Home
last modified time | relevance | path

Searched defs:opCode (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_executor.h81 inline bool HandleOpAll(uint8_t opCode) in HandleOpAll()
94 inline bool HandleOpChar(const DynChunk &byteCode, uint8_t opCode) in HandleOpChar()
119 inline bool HandleOpWordBoundary(uint8_t opCode) in HandleOpWordBoundary()
150 inline bool HandleOpLineStart(uint8_t opCode) in HandleOpLineStart()
167 inline bool HandleOpLineEnd(uint8_t opCode) in HandleOpLineEnd()
181 inline void HandleOpSaveStart(const DynChunk &byteCode, uint8_t opCode) in HandleOpSaveStart()
191 inline void HandleOpSaveEnd(const DynChunk &byteCode, uint8_t opCode) in HandleOpSaveEnd()
201 inline void HandleOpSaveReset(const DynChunk &byteCode, uint8_t opCode) in HandleOpSaveReset()
214 inline void HandleOpMatch(const DynChunk &byteCode, uint8_t opCode) in HandleOpMatch()
224 inline void HandleOpSplitFirst(const DynChunk &byteCode, uint8_t opCode) in HandleOpSplitFirst()
[all …]
Dregexp_executor.cpp108 uint8_t opCode = byteCode.GetU8(GetCurrentPC()); in ExecuteInternal() local
Dregexp_opcode.cpp93 RegExpOpCode::RegExpOpCode(uint8_t opCode, int size) : opCode_(opCode), size_(size) {} in RegExpOpCode()
98 uint8_t opCode = buf.GetU8(pc); in GetRegExpOpCode() local
104 RegExpOpCode *RegExpOpCode::GetRegExpOpCode(uint8_t opCode) in GetRegExpOpCode()