Lines Matching defs:indices
1569 // 1. Let T be a String value equal to the substring of S consisting of the elements at indices p
1621 // 25. Let T be a String value equal to the substring of S consisting of the elements at indices p (inclusive)
1914 const std::vector<std::pair<JSTaggedValue, JSTaggedValue>>& indices,
1917 // 1. Let n be the number of elements in indices.
1918 uint32_t n = indices.size();
1940 // a. Let matchIndices be indices[i].
1951 std::pair<JSTaggedValue, JSTaggedValue> matchIndices = indices[i];
2027 // Let indices be a new empty List.
2029 // Append match to indices.
2031 std::vector<std::pair<JSTaggedValue, JSTaggedValue>> indices;
2033 indices.emplace_back(std::make_pair(globalTable->GetStartOfCaptureIndex(0), JSTaggedValue(endIndex)));
2070 indices.emplace_back(std::make_pair(JSTaggedValue::Undefined(), JSTaggedValue::Undefined()));
2074 indices.emplace_back(std::make_pair(captureStartIndex, captureEndIndex));
2097 // a. Let indicesArray be MakeMatchIndicesIndexPairArray(S, indices, groupNames, hasGroups).
2098 // b. Perform ! CreateDataPropertyOrThrow(A, "indices", indicesArray).
2101 auto indicesArray = MakeMatchIndicesIndexPairArray(thread, indices, groupNames, hasGroups);