Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_opcode.h177 class PushCharOpCode : public RegExpOpCode {
179 PushCharOpCode() : RegExpOpCode(OP_PUSH_CHAR, RegExpOpCode::OP_SIZE_ONE) {} in PushCharOpCode() function
181 ~PushCharOpCode() override = default;
182 NO_COPY_SEMANTIC(PushCharOpCode);
183 NO_MOVE_SEMANTIC(PushCharOpCode);
Dregexp_opcode.cpp34 static PushCharOpCode g_pushCharOpcode = PushCharOpCode(); // NOLINTNEXTLINE(fuchsia-statically…
265 uint32_t PushCharOpCode::InsertOpCode(DynChunk *buf, uint32_t offset) const in InsertOpCode()
272 uint32_t PushCharOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32… in DumpOpCode()
Dregexp_parser.cpp763 PushCharOpCode pushCharOp; in ParseQuantifier()