Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_opcode.h197 class LoopOpCode : public RegExpOpCode {
199 LoopOpCode() : RegExpOpCode(OP_LOOP, RegExpOpCode::OP_SIZE_THIRTEEN) {} in LoopOpCode() function
201 ~LoopOpCode() override = default;
202 NO_COPY_SEMANTIC(LoopOpCode);
203 NO_MOVE_SEMANTIC(LoopOpCode);
Dregexp_opcode.cpp31 static LoopOpCode g_loopOpcode = LoopOpCode(); // NOLINTNEXTLINE(fuchsia-statically-constructed…
229 uint32_t LoopOpCode::EmitOpCode(DynChunk *buf, uint32_t start, uint32_t min, uint32_t max) const in EmitOpCode()
238 uint32_t LoopOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode()
Dregexp_parser.cpp774 LoopOpCode loopOp; in ParseQuantifier()