Lines Matching refs:propertyList

60     std::vector<JSHandle<JSTaggedValue>> propertyList;
63 propertyList.reserve(16); // 16: initial capacity
90 continuation = JsonContinuation(ContType::OBJECT, propertyList.size());
97 propertyList.emplace_back(ParseString(true));
117 continuation = JsonContinuation(ContType::MAP, propertyList.size());
124 propertyList.emplace_back(ParseString(true));
178 ASSERT(propertyList.empty());
207 propertyList.emplace_back(parseValue);
215 propertyList.emplace_back(ParseString(true));
226 parseValue = CreateSJsonObject(continuation, propertyList);
228 parseValue = CreateJsonObject(continuation, propertyList);
235 propertyList.resize(continuation.index_);
241 propertyList.emplace_back(parseValue);
249 propertyList.emplace_back(ParseString(true));
260 parseValue = CreateSJsonMap(continuation, propertyList);
262 parseValue = CreateJsonMap(continuation, propertyList);
269 propertyList.resize(continuation.index_);
309 std::vector<JSHandle<JSTaggedValue>> &propertyList)
312 size_t size = propertyList.size() - start;
315 auto &keyHandle = propertyList[start + i];
316 auto &valueHandle = propertyList[start + i + 1];
330 std::vector<JSHandle<JSTaggedValue>> &propertyList)
333 size_t size = propertyList.size() - start;
348 JSHandle<JSTaggedValue> keyHandle = propertyList[start + i];
362 elementsDic, std::move(propertyList));
367 int64_t eleIndex = ObjectFastOperator::TryToElementsIndex(propertyList[start + i].GetTaggedValue());
373 elementsDic->UpdateValue(thread_, entry, propertyList[start + i + 1].GetTaggedValue());
377 obj->SetPropertyInlinedProps(thread_, index++, propertyList[start + i + 1].GetTaggedValue());
396 propKey.Update(propertyList[start + i]);
397 propValue.Update(propertyList[start + i + 1]);
439 std::vector<JSHandle<JSTaggedValue>> &propertyList)
442 size_t size = propertyList.size() - start;
449 JSMap::Set(thread_, map, propertyList[start + i], propertyList[start + i + 1]);
457 std::vector<JSHandle<JSTaggedValue>> &propertyList)
460 size_t size = propertyList.size() - start;
467 JSSharedMap::Set(thread_, jsMap, propertyList[start + i], propertyList[start + i + 1]);
479 propKey.Update(propertyList[start + i]);
480 propValue.Update(propertyList[start + i + 1]);