Lines Matching defs:groupNames
1915 const std::vector<JSHandle<JSTaggedValue>>& groupNames, bool hasGroups)
1919 // Assert: groupNames has n - 1 elements.
1920 ASSERT(groupNames.size() == n - 1);
1946 // e. If i > 0 and groupNames[i - 1] is not undefined, then
1948 // ii. Perform ! CreateDataPropertyOrThrow(groups, groupNames[i - 1], matchIndexPair).
1963 JSHandle<JSTaggedValue> groupName = groupNames[i - 1];
2028 // Let groupNames be a new empty List.
2032 std::vector<JSHandle<JSTaggedValue>> groupNames;
2088 groupNames.emplace_back(skey);
2090 groupNames.emplace_back(undefined);
2093 groupNames.emplace_back(undefined);
2097 // a. Let indicesArray be MakeMatchIndicesIndexPairArray(S, indices, groupNames, hasGroups).
2101 auto indicesArray = MakeMatchIndicesIndexPairArray(thread, indices, groupNames, hasGroups);