Home
last modified time | relevance | path

Searched refs:groupName (Results 1 – 6 of 6) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_parser_cache.cpp46 CVector<CString> &groupName) in GetCache() argument
53 groupName = info.newGroupNames_; in GetCache()
59 CVector<CString> groupName) in SetCache() argument
67 info.newGroupNames_ = groupName; in SetCache()
Dregexp_parser_cache.h34 CVector<CString> &groupName);
36 const size_t bufferSize, CVector<CString> groupName);
Dregexp_parser.h100 int ParseCaptureCount(const char *groupName);
Dregexp_parser.cpp846 int RegExpParser::ParseCaptureCount(const char *groupName) in ParseCaptureCount() argument
863 if (groupName != nullptr) { in ParseCaptureCount()
865 if (strcmp(name.c_str(), groupName) == 0) { in ParseCaptureCount()
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_regexp.cpp1489 JSHandle<JSTaggedValue> groupName(thread, regexpObj->GetGroupName()); in RegExpBuiltinExec() local
1491 if (!groupName->IsUndefined()) { in RegExpBuiltinExec()
1521 if (!groupName->IsUndefined()) { in RegExpBuiltinExec()
1756 CVector<CString> groupName; in RegExpInitialize() local
1757 auto getCache = regExpParserCache->GetCache(*patternStrHandle, flagsBits, groupName); in RegExpInitialize()
1767 groupName = parser.GetGroupNames(); in RegExpInitialize()
1774 if (!groupName.empty()) { in RegExpInitialize()
1775 JSHandle<TaggedArray> taggedArray = factory->NewTaggedArray(groupName.size()); in RegExpInitialize()
1776 for (size_t i = 0; i < groupName.size(); ++i) { in RegExpInitialize()
1777 JSHandle<JSTaggedValue> flagsKey(factory->NewFromStdString(groupName[i].c_str())); in RegExpInitialize()
[all …]
Dbuiltins_string.cpp1219 JSHandle<EcmaString> groupName(thread, in GetSubstitution() local
1222 JSHandle<JSTaggedValue> names(groupName); in GetSubstitution()