Home
last modified time | relevance | path

Searched refs:MatchEndOpCode (Results 1 – 3 of 3) sorted by relevance

/ark/js_runtime/ecmascript/regexp/
Dregexp_opcode.h237 class MatchEndOpCode : public RegExpOpCode {
239 MatchEndOpCode() : RegExpOpCode(OP_MATCH_END, RegExpOpCode::OP_SIZE_ONE) {} in MatchEndOpCode() function
241 ~MatchEndOpCode() override = default;
242 NO_COPY_SEMANTIC(MatchEndOpCode);
243 NO_MOVE_SEMANTIC(MatchEndOpCode);
Dregexp_opcode.cpp51 static MatchEndOpCode g_matchEndOpcode = MatchEndOpCode(); // NOLINTNEXTLINE(fuchsia-statically-co…
352 uint32_t MatchEndOpCode::EmitOpCode(DynChunk *buf, [[maybe_unused]] uint32_t para) const in EmitOpCode()
358 uint32_t MatchEndOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32… in DumpOpCode()
Dregexp_parser.cpp92 MatchEndOpCode matchEndOp; in Parse()