Home
last modified time | relevance | path

Searched refs:groupNames_ (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_parser.h70 groupNames_(chunk) in RegExpParser()
126 return groupNames_.size_; in GetGroupNamesSize()
269 DynChunk groupNames_; variable
Dregexp_parser.cpp482 const char *p = reinterpret_cast<char *>(groupNames_.buf_); in FindGroupName()
484 const char *bufEnd = reinterpret_cast<char *>(groupNames_.buf_) + groupNames_.size_; in FindGroupName()
570 groupNames_.EmitStr(name.c_str()); in ParseAssertionCapture()
596 groupNames_.EmitChar(0); in ParseAssertionCapture()
1056 const char *name = reinterpret_cast<const char*>(groupNames_.buf_); in RecountCaptures()
/arkcompiler/ets_frontend/es2panda/lexer/regexp/
Dregexp.cpp232 auto result = groupNames_.insert(name); in ParseNamedCapturingGroup()
698 if (groupNames_.empty()) { in ParseNamedBackreference()
714 auto result = groupNames_.find(ref); in ValidateNamedGroupReferences()
715 if (result == groupNames_.end()) { in ValidateNamedGroupReferences()
Dregexp.h101 std::unordered_set<util::StringView> groupNames_; variable