Lines Matching refs:value

140   Handle<Object> value;
142 isolate_, value, Object::GetPropertyOrElement(isolate_, holder, name),
144 if (value->IsJSReceiver()) {
145 Handle<JSReceiver> object = Handle<JSReceiver>::cast(value);
175 Handle<Object> argv[] = {name, value};
352 base::uc32 value = 0;
356 value = value * 16 + digit;
358 return value;
361 // Parse any JSON value.
444 Handle<Object> value = property.value;
445 elms = NumberDictionary::Set(isolate_, elms, index, value);
460 Handle<Object> value = property.value;
461 elms->set(static_cast<int>(index), *value, mode);
514 Handle<Object> value = property.value;
520 if (!value->FitsRepresentation(expected_representation)) {
521 Representation representation = value->OptimalRepresentation(isolate());
528 value->OptimalType(isolate(), representation);
535 .NowContains(value)) {
537 value->OptimalType(isolate(), expected_representation);
541 } else if (expected_representation.IsDouble() && value->IsSmi()) {
547 .NowContains(value));
596 Object value = *property.value;
601 if (value.IsSmi()) {
611 bit_cast<uint64_t>(static_cast<double>(Smi::ToInt(value)));
618 value = hn;
621 DCHECK(value.IsHeapNumber());
622 HeapObject::cast(value).set_map(*factory()->heap_number_map(),
626 object->RawFastInobjectPropertyAtPut(index, value, mode);
660 Handle<Object> value = property.value;
662 JSObject::DefineOwnPropertyIgnoreAttributes(&it, value, NONE).Check();
677 Object value = *element_stack[i];
678 if (value.IsHeapObject()) {
679 if (HeapObject::cast(value).IsHeapNumber()) {
708 // Parse any JSON value.
719 Handle<Object> value;
721 // Produce a json value.
723 // Iterate until a value is produced. Starting but not immediately finishing
733 value = MakeString(ScanJsonString(false));
737 value = ParseJsonNumber();
744 value = factory()->NewJSObject(object_constructor_);
759 // Continue to start producing the first property value.
766 value = factory()->NewJSArray(0, PACKED_SMI_ELEMENTS);
780 value = factory()->true_value();
785 value = factory()->false_value();
790 value = factory()->null_value();
811 // Done producing a value, consume it.
815 // Consume a produced json value.
824 return cont.scope.CloseAndEscape(value);
827 // Store the previous property value into its property info.
828 property_stack.back().value = value;
837 // Break to start producing the subsequent property value.
856 value = BuildJsonObject(cont, property_stack, feedback);
861 value = cont.scope.CloseAndEscape(value);
871 element_stack.emplace_back(value);
872 // Break to start producing the subsequent element value.
875 value = BuildJsonArray(cont, element_stack);
880 value = cont.scope.CloseAndEscape(value);
889 // Done consuming a value. Produce next value.
1100 base::uc32 value = 0;
1102 value = value * 16 + base::HexValue(*++cursor);
1104 if (value <=
1106 *sink++ = value;
1108 *sink++ = unibrow::Utf16::LeadSurrogate(value);
1109 *sink++ = unibrow::Utf16::TrailSurrogate(value);
1175 base::uc32 value = ScanUnicodeCharacter();
1176 if (value == kInvalidUnicodeCharacter) {
1181 bits |= value;
1183 // whether the decoded value requires a surrogate pair.
1184 offset += 5 - (value > static_cast<base::uc32>(