Lines Matching defs:groupName
1963 JSHandle<JSTaggedValue> groupName = groupNames[i - 1];
1964 if (!groupName->IsUndefined()) {
1966 JSObject::CreateDataProperty(thread, groupObject, groupName, matchIndexPair);
2041 JSHandle<JSTaggedValue> groupName(thread, regexpObj->GetGroupName());
2044 if (!groupName->IsUndefined()) {
2082 if (!groupName->IsUndefined()) {
2360 CVector<CString> groupName;
2361 auto getCache = regExpParserCache->GetCache(*patternStrHandle, flagsBits, groupName);
2374 groupName = parser.GetGroupNames();
2381 if (!groupName.empty()) {
2382 JSHandle<TaggedArray> taggedArray = factory->NewTaggedArray(groupName.size());
2383 for (size_t i = 0; i < groupName.size(); ++i) {
2384 JSHandle<JSTaggedValue> flagsKey(factory->NewFromStdString(groupName[i].c_str()));
2394 regExpParserCache->SetCache(*patternStrHandle, flagsBits, regexp->GetByteCodeBuffer(), bufferSize, groupName);