• Home
  • Raw
  • Download

Lines Matching full:currentvalue

984     JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined());  in GetArrayListValue()  local
987 currentValue.Update(arrayList->Get(thread, index)); in GetArrayListValue()
988 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetArrayListValue()
1001 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetDequeValue() local
1004 currentValue.Update(deque->Get(thread, index)); in GetDequeValue()
1005 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetDequeValue()
1024 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetHashMapValue() local
1033 currentValue.Update(node->GetValue(thread)); in GetHashMapValue()
1036 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetHashMapValue()
1089 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetLightWeightMapValue() local
1095 currentValue.Update(values->Get(thread, index)); in GetLightWeightMapValue()
1098 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLightWeightMapValue()
1113 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetLightWeightSetValue() local
1117 currentValue.Update(lightWeightSet->GetValueAt(thread, index)); in GetLightWeightSetValue()
1118 if (currentValue->IsECMAObject()) { in GetLightWeightSetValue()
1120 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLightWeightSetValue()
1124 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLightWeightSetValue()
1139 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetLinkedListValue() local
1144 currentValue.Update(doubleList->GetElement(thread, valueNode)); in GetLinkedListValue()
1145 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetLinkedListValue()
1159 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetListValue() local
1164 currentValue.Update(singleList->GetElement(thread, valueNode)); in GetListValue()
1165 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetListValue()
1181 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetPlainArrayValue() local
1187 currentValue.Update(valueArray->Get(thread, index)); in GetPlainArrayValue()
1190 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetPlainArrayValue()
1205 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetQueueValue() local
1209 currentValue.Update(queue->Get(thread, pos)); in GetQueueValue()
1211 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetQueueValue()
1224 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetStackValue() local
1227 currentValue.Update(stack->Get(thread, index)); in GetStackValue()
1228 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetStackValue()
1245 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetTreeMapValue() local
1252 currentValue.Update(iteratedMap->GetValue(thread, entriesIndex)); in GetTreeMapValue()
1255 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetTreeMapValue()
1272 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetTreeSetValue() local
1277 currentValue.Update(iteratedSet->GetKey(thread, entriesIndex)); in GetTreeSetValue()
1278 if (currentValue->IsECMAObject()) { in GetTreeSetValue()
1280 objRef->Set(ecmaVm, jsValue, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetTreeSetValue()
1284 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetTreeSetValue()
1298 JSMutableHandle<JSTaggedValue> currentValue(thread, JSTaggedValue::Undefined()); in GetVectorValue() local
1301 currentValue.Update(vector->Get(thread, vector, index)); in GetVectorValue()
1302 …ArrayRef::SetValueAt(ecmaVm, jsValueRef, index++, JSNApiHelper::ToLocal<JSValueRef>(currentValue)); in GetVectorValue()