Lines Matching full:out
113 void RegExpOpCode::DumpRegExpOpCode(std::ostream &out, const DynChunk &buf) in DumpRegExpOpCode() argument
115 out << "OpCode:\t" << std::endl; in DumpRegExpOpCode()
119 pc = byteCode->DumpOpCode(out, buf, pc); in DumpRegExpOpCode()
131 uint32_t SaveStartOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
133 out << offset << ":\t" in DumpOpCode()
146 uint32_t SaveEndOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
148 out << offset << ":\t" in DumpOpCode()
161 uint32_t CharOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
163 out << offset << ":\t" in DumpOpCode()
175 uint32_t Char32OpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
177 out << offset << ":\t" in DumpOpCode()
194 uint32_t GotoOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
196 out << offset << ":\t" in DumpOpCode()
216 uint32_t SplitNextOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
218 out << offset << ":\t" in DumpOpCode()
238 uint32_t SplitFirstOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
240 out << offset << ":\t" in DumpOpCode()
254 uint32_t LoopOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
256 out << offset << ":\t" in DumpOpCode()
272 uint32_t LoopGreedyOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
274 out << offset << ":\t" in DumpOpCode()
288 uint32_t PushCharOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32… in DumpOpCode() argument
290 out << offset << ":\t" in DumpOpCode()
302 uint32_t PushOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32_t o… in DumpOpCode() argument
304 out << offset << ":\t" in DumpOpCode()
315 uint32_t PopOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32_t of… in DumpOpCode() argument
317 out << offset << ":\t" in DumpOpCode()
329 uint32_t CheckCharOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
331 out << offset << ":\t" in DumpOpCode()
347 uint32_t SaveResetOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
349 out << offset << ":\t" in DumpOpCode()
361 uint32_t MatchOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32_t … in DumpOpCode() argument
363 out << offset << ":\t" in DumpOpCode()
374 uint32_t MatchEndOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32… in DumpOpCode() argument
376 out << offset << ":\t" in DumpOpCode()
387 uint32_t LineStartOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint3… in DumpOpCode() argument
389 out << offset << ":\t" in DumpOpCode()
400 uint32_t LineEndOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32_… in DumpOpCode() argument
402 out << offset << ":\t" in DumpOpCode()
413 uint32_t WordBoundaryOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, ui… in DumpOpCode() argument
415 out << offset << ":\t" in DumpOpCode()
426 uint32_t NotWordBoundaryOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, in DumpOpCode() argument
429 out << offset << ":\t" in DumpOpCode()
440 uint32_t AllOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32_t of… in DumpOpCode() argument
442 out << offset << ":\t" in DumpOpCode()
453 uint32_t DotsOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32_t o… in DumpOpCode() argument
455 out << offset << ":\t" in DumpOpCode()
460 uint32_t MatchAheadOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
462 out << offset << ":\t" in DumpOpCode()
467 uint32_t RangeOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
469 out << offset << ":\t" in DumpOpCode()
473 … out << buf.GetU16(offset + RegExpOpCode::OP_SIZE_THREE + (i * RegExpOpCode::OP_SIZE_FOUR)) << "\t" in DumpOpCode()
478 out << std::endl; in DumpOpCode()
494 uint32_t Range32OpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
496 out << offset << ":\t" in DumpOpCode()
500 …out << buf.GetU32(offset + RegExpOpCode::OP_SIZE_THREE + (i * RegExpOpCode::OP_SIZE_EIGHT)) << "\t" in DumpOpCode()
505 out << std::endl; in DumpOpCode()
521 uint32_t SparseOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) const in DumpOpCode() argument
523 out << offset << ":\t" in DumpOpCode()
527 …out << static_cast<char>(buf.GetU16(offset + RegExpOpCode::OP_SIZE_THREE + (i * RegExpOpCode::OP_S… in DumpOpCode()
533 out << std::endl; in DumpOpCode()
545 uint32_t NegativeMatchAheadOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offs… in DumpOpCode() argument
547 out << offset << ":\t" in DumpOpCode()
566 uint32_t PrevOpCode::DumpOpCode(std::ostream &out, [[maybe_unused]] const DynChunk &buf, uint32_t o… in DumpOpCode() argument
568 out << offset << ":\t" in DumpOpCode()
581 uint32_t BackReferenceOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t offset) c… in DumpOpCode() argument
583 out << offset << ":\t" in DumpOpCode()
596 uint32_t BackwardBackReferenceOpCode::DumpOpCode(std::ostream &out, const DynChunk &buf, uint32_t o… in DumpOpCode() argument
598 out << offset << ":\t" in DumpOpCode()