Lines Matching defs:value
47 int32_t index, const JSHandle<JSTaggedValue> &value, AccossorsKind kind)
52 TaggedArray::InsertElementByIndex(thread, newArray, value, index, len);
57 int32_t index, const JSHandle<JSTaggedValue> &value, AccossorsKind kind)
61 array->Set(thread, index, value.GetTaggedValue());
74 const JSHandle<JSTaggedValue> &key, const JSHandle<JSTaggedValue> &value)
79 ReplaceValue(thread, lightWeightMap, index, value, AccossorsKind::VALUE);
84 InsertValue(thread, lightWeightMap, index, value, AccossorsKind::VALUE);
143 const JSHandle<JSTaggedValue> &value)
148 if (JSTaggedValue::SameValue(valueArray->Get(num), value.GetTaggedValue())) {
192 const JSHandle<JSTaggedValue> &value)
196 JSTaggedValue compValue = value.GetTaggedValue();
215 oss << "The value of \"index\" is out of range. It must be >= 0 && <= " << (length - 1)
216 << ". Received value is: " << index;
234 oss << "The value of \"index\" is out of range. It must be >= 0 && <= " << (length - 1)
235 << ". Received value is: " << index;
249 JSMutableHandle<JSTaggedValue> value(thread, JSTaggedValue::Undefined());
253 value.Update(needValueArray->Get(num));
254 JSAPILightWeightMap::Set(thread, lightWeightMap, key, value);
267 JSTaggedValue value = valueArray->Get(index);
273 return value;
312 int32_t index, const JSHandle<JSTaggedValue> &value)
321 oss << "The value of \"index\" is out of range. It must be >= 0 && <= " << (length - 1)
322 << ". Received value is: " << index;
326 ReplaceValue(thread, lightWeightMap, index, value, AccossorsKind::VALUE);