Lines Matching refs:sortArr
631 CVector<JSHandle<JSTaggedValue>> sortArr;
639 sortArr.emplace_back(JSHandle<JSTaggedValue>(thread_, numberKey));
643 std::sort(sortArr.begin(), sortArr.end(), JsonHelper::CompareNumber);
644 for (const auto &entry : sortArr) {
796 CVector<std::pair<JSHandle<JSTaggedValue>, PropertyAttributes>> sortArr;
807 sortArr.emplace_back(pair);
809 std::sort(sortArr.begin(), sortArr.end(), JsonHelper::CompareKey);
810 for (const auto &entry : sortArr) {
831 CVector<std::pair<JSHandle<JSTaggedValue>, PropertyAttributes>> sortArr;
842 sortArr.emplace_back(pair);
844 std::sort(sortArr.begin(), sortArr.end(), JsonHelper::CompareKey);
845 for (const auto &entry : sortArr) {