Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_opcode.h187 class CheckCharOpCode : public RegExpOpCode {
189 CheckCharOpCode() : RegExpOpCode(OP_CHECK_CHAR, RegExpOpCode::OP_SIZE_FIVE) {} in CheckCharOpCode() function
191 ~CheckCharOpCode() override = default;
192 NO_COPY_SEMANTIC(CheckCharOpCode);
193 NO_MOVE_SEMANTIC(CheckCharOpCode);
Dregexp_opcode.cpp35 static CheckCharOpCode g_checkCharOpcode = CheckCharOpCode(); // NOLINTNEXTLINE(fuchsia-statically…
306 uint32_t CheckCharOpCode::EmitOpCode(DynChunk *buf, uint32_t offset) const in EmitOpCode()
313 uint32_t CheckCharOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode()
Dregexp_parser.cpp769 CheckCharOpCode checkCharOp; in ParseQuantifier()