Lines Matching defs:value

314     for (size_t i = 0; i < size; i += 2) { // 2: prop name and value
334 uint32_t fieldNum = size / 2; // 2: key-value pair
347 for (size_t i = 0; i < size; i += 2) { // 2: prop name and value
366 for (size_t i = 0; i < size; i += 2) { // 2: prop name and value
393 // create dict and set key value
394 for (size_t i = 0; i < size; i += 2) { // 2: prop name and value
448 for (size_t i = 0; i < size; i += 2) { // 2: prop name and value
461 uint32_t fieldNum = size / 2; // 2: key-value pair
466 for (size_t i = 0; i < size; i += 2) { // 2: prop name and value
476 // create dict and set key value
477 for (size_t i = 0; i < size; i += 2) { // 2: prop name and value
491 const JSHandle<JSTaggedValue> &key, const JSHandle<JSTaggedValue> &value)
501 receiver.GetTaggedValue(), index, value.GetTaggedValue());
508 receiver.GetTaggedValue(), newKey, value.GetTaggedValue());
580 JSTaggedValue value = BigInt::DoubleToBigInt(thread_, v);
582 if (value.IsBigInt()) {
583 return value;
1243 std::string value(current_, end_); // from uint16_t* to std::string, can't use std::string_view
1245 ASSERT(value.size() <= static_cast<size_t>(UINT32_MAX));
1247 reinterpret_cast<const uint8_t *>(value.c_str()), value.size()));
1249 std::u16string_view value(reinterpret_cast<const char16_t *>(current_), end_ - current_);
1251 ASSERT(value.size() <= static_cast<size_t>(UINT32_MAX));
1253 reinterpret_cast<const uint16_t *>(value.data()), value.size()));
1262 std::string value(current_, end_); // from uint16_t* to std::string, can't use std::string_view
1263 ASSERT(value.size() <= static_cast<size_t>(UINT32_MAX));
1266 reinterpret_cast<const uint8_t *>(value.c_str()), value.size()));
1268 std::u16string_view value(reinterpret_cast<const char16_t *>(current_), end_ - current_);
1269 ASSERT(value.size() <= static_cast<size_t>(UINT32_MAX));
1272 reinterpret_cast<const uint16_t *>(value.data()), value.size()));
1382 JSHandle<JSTaggedValue> value = InternalizeJsonProperty(thread, holder, name, receiver, transformType);
1386 if (value->IsUndefined()) {
1392 changeResult = JSObject::CreateDataProperty(thread, holder, name, value);