• Home
  • Raw
  • Download

Lines Matching refs:os_

4442       : os_(os),  in DotPrinter()
4453 std::ostream& os_; member in v8::internal::DotPrinter
4459 os_ << "digraph G {\n graph [label=\""; in PrintNode()
4463 os_ << "\\\\"; in PrintNode()
4466 os_ << "\""; in PrintNode()
4469 os_ << label[i]; in PrintNode()
4473 os_ << "\"];\n"; in PrintNode()
4475 os_ << "}" << std::endl; in PrintNode()
4487 os_ << " n" << from << " -> n" << on_failure << " [style=dotted];\n"; in PrintOnFailure()
4495 : os_(os), in TableEntryBodyPrinter()
4501 os_ << " n" << choice() << ":s" << from << "o" << i << " -> n" in Call()
4508 std::ostream& os_; member in v8::internal::TableEntryBodyPrinter
4517 os_(os) {} in TableEntryHeaderPrinter()
4522 os_ << "|"; in Call()
4524 os_ << "{\\" << AsUC16(from) << "-\\" << AsUC16(entry.to()) << "|{"; in Call()
4529 if (priority > 0) os_ << "|"; in Call()
4530 os_ << "<s" << from << "o" << i << "> " << priority; in Call()
4534 os_ << "}}"; in Call()
4539 std::ostream& os_; member in v8::internal::TableEntryHeaderPrinter
4546 : os_(os), in AttributePrinter()
4552 os_ << "|"; in PrintSeparator()
4558 os_ << "{" << name << "}"; in PrintBit()
4563 os_ << "{" << name << "|" << value << "}"; in PrintPositive()
4567 std::ostream& os_; member in v8::internal::AttributePrinter
4573 os_ << " a" << that << " [shape=Mrecord, color=grey, fontcolor=grey, " in PrintAttributes()
4575 AttributePrinter printer(os_); in PrintAttributes()
4583 os_ << "}\"];\n" in PrintAttributes()
4592 os_ << " n" << that << " [shape=Mrecord, label=\""; in VisitChoice()
4593 TableEntryHeaderPrinter header_printer(os_); in VisitChoice()
4595 os_ << "\"]\n"; in VisitChoice()
4597 TableEntryBodyPrinter body_printer(os_, that); in VisitChoice()
4600 os_ << " n" << that << " [shape=Mrecord, label=\"?\"];\n"; in VisitChoice()
4603 os_ << " n" << that << " -> n" << alt.node(); in VisitChoice()
4615 os_ << " n" << that << " [label=\""; in VisitText()
4617 if (i > 0) os_ << " "; in VisitText()
4623 os_ << static_cast<char>(data[i]); in VisitText()
4629 os_ << "["; in VisitText()
4630 if (node->is_negated()) os_ << "^"; in VisitText()
4633 os_ << AsUC16(range.from()) << "-" << AsUC16(range.to()); in VisitText()
4635 os_ << "]"; in VisitText()
4642 os_ << "\", shape=box, peripheries=2];\n"; in VisitText()
4644 os_ << " n" << that << " -> n" << that->on_success() << ";\n"; in VisitText()
4650 os_ << " n" << that << " [label=\"$" << that->start_register() << "..$" in VisitBackReference()
4653 os_ << " n" << that << " -> n" << that->on_success() << ";\n"; in VisitBackReference()
4659 os_ << " n" << that << " [style=bold, shape=point];\n"; in VisitEnd()
4665 os_ << " n" << that << " ["; in VisitAssertion()
4668 os_ << "label=\"$\", shape=septagon"; in VisitAssertion()
4671 os_ << "label=\"^\", shape=septagon"; in VisitAssertion()
4674 os_ << "label=\"\\b\", shape=septagon"; in VisitAssertion()
4677 os_ << "label=\"\\B\", shape=septagon"; in VisitAssertion()
4680 os_ << "label=\"(?<=\\n)\", shape=septagon"; in VisitAssertion()
4683 os_ << "];\n"; in VisitAssertion()
4686 os_ << " n" << that << " -> n" << successor << ";\n"; in VisitAssertion()
4692 os_ << " n" << that << " ["; in VisitAction()
4695 os_ << "label=\"$" << that->data_.u_store_register.reg in VisitAction()
4699 os_ << "label=\"$" << that->data_.u_increment_register.reg in VisitAction()
4703 os_ << "label=\"$" << that->data_.u_position_register.reg in VisitAction()
4707 os_ << "label=\"$" << that->data_.u_submatch.current_position_register in VisitAction()
4711 os_ << "label=\"escape\", shape=septagon"; in VisitAction()
4714 os_ << "label=\"$" << that->data_.u_empty_match_check.start_register in VisitAction()
4720 os_ << "label=\"clear $" << that->data_.u_clear_captures.range_from in VisitAction()
4726 os_ << "];\n"; in VisitAction()
4729 os_ << " n" << that << " -> n" << successor << ";\n"; in VisitAction()
4736 explicit DispatchTableDumper(std::ostream& os) : os_(os) {} in DispatchTableDumper()
4739 std::ostream& os_; member in v8::internal::DispatchTableDumper
4744 os_ << "[" << AsUC16(key) << "-" << AsUC16(entry.to()) << "]: {"; in Call()
4752 os_ << ", "; in Call()
4754 os_ << i; in Call()
4757 os_ << "}\n"; in Call()