• Home
  • Raw
  • Download

Lines Matching refs:os_

4364       : os_(os),  in DotPrinter()
4375 std::ostream& os_; member in v8::internal::DotPrinter
4381 os_ << "digraph G {\n graph [label=\""; in PrintNode()
4385 os_ << "\\\\"; in PrintNode()
4388 os_ << "\""; in PrintNode()
4391 os_ << label[i]; in PrintNode()
4395 os_ << "\"];\n"; in PrintNode()
4397 os_ << "}" << std::endl; in PrintNode()
4409 os_ << " n" << from << " -> n" << on_failure << " [style=dotted];\n"; in PrintOnFailure()
4417 : os_(os), in TableEntryBodyPrinter()
4423 os_ << " n" << choice() << ":s" << from << "o" << i << " -> n" in Call()
4430 std::ostream& os_; member in v8::internal::TableEntryBodyPrinter
4439 os_(os) {} in TableEntryHeaderPrinter()
4444 os_ << "|"; in Call()
4446 os_ << "{\\" << AsUC16(from) << "-\\" << AsUC16(entry.to()) << "|{"; in Call()
4451 if (priority > 0) os_ << "|"; in Call()
4452 os_ << "<s" << from << "o" << i << "> " << priority; in Call()
4456 os_ << "}}"; in Call()
4461 std::ostream& os_; member in v8::internal::TableEntryHeaderPrinter
4468 : os_(os), in AttributePrinter()
4474 os_ << "|"; in PrintSeparator()
4480 os_ << "{" << name << "}"; in PrintBit()
4485 os_ << "{" << name << "|" << value << "}"; in PrintPositive()
4489 std::ostream& os_; member in v8::internal::AttributePrinter
4495 os_ << " a" << that << " [shape=Mrecord, color=grey, fontcolor=grey, " in PrintAttributes()
4497 AttributePrinter printer(os_); in PrintAttributes()
4505 os_ << "}\"];\n" in PrintAttributes()
4514 os_ << " n" << that << " [shape=Mrecord, label=\""; in VisitChoice()
4515 TableEntryHeaderPrinter header_printer(os_); in VisitChoice()
4517 os_ << "\"]\n"; in VisitChoice()
4519 TableEntryBodyPrinter body_printer(os_, that); in VisitChoice()
4522 os_ << " n" << that << " [shape=Mrecord, label=\"?\"];\n"; in VisitChoice()
4525 os_ << " n" << that << " -> n" << alt.node(); in VisitChoice()
4537 os_ << " n" << that << " [label=\""; in VisitText()
4539 if (i > 0) os_ << " "; in VisitText()
4545 os_ << static_cast<char>(data[i]); in VisitText()
4551 os_ << "["; in VisitText()
4552 if (node->is_negated()) os_ << "^"; in VisitText()
4555 os_ << AsUC16(range.from()) << "-" << AsUC16(range.to()); in VisitText()
4557 os_ << "]"; in VisitText()
4564 os_ << "\", shape=box, peripheries=2];\n"; in VisitText()
4566 os_ << " n" << that << " -> n" << that->on_success() << ";\n"; in VisitText()
4572 os_ << " n" << that << " [label=\"$" << that->start_register() << "..$" in VisitBackReference()
4575 os_ << " n" << that << " -> n" << that->on_success() << ";\n"; in VisitBackReference()
4581 os_ << " n" << that << " [style=bold, shape=point];\n"; in VisitEnd()
4587 os_ << " n" << that << " ["; in VisitAssertion()
4590 os_ << "label=\"$\", shape=septagon"; in VisitAssertion()
4593 os_ << "label=\"^\", shape=septagon"; in VisitAssertion()
4596 os_ << "label=\"\\b\", shape=septagon"; in VisitAssertion()
4599 os_ << "label=\"\\B\", shape=septagon"; in VisitAssertion()
4602 os_ << "label=\"(?<=\\n)\", shape=septagon"; in VisitAssertion()
4605 os_ << "];\n"; in VisitAssertion()
4608 os_ << " n" << that << " -> n" << successor << ";\n"; in VisitAssertion()
4614 os_ << " n" << that << " ["; in VisitAction()
4617 os_ << "label=\"$" << that->data_.u_store_register.reg in VisitAction()
4621 os_ << "label=\"$" << that->data_.u_increment_register.reg in VisitAction()
4625 os_ << "label=\"$" << that->data_.u_position_register.reg in VisitAction()
4629 os_ << "label=\"$" << that->data_.u_submatch.current_position_register in VisitAction()
4633 os_ << "label=\"escape\", shape=septagon"; in VisitAction()
4636 os_ << "label=\"$" << that->data_.u_empty_match_check.start_register in VisitAction()
4642 os_ << "label=\"clear $" << that->data_.u_clear_captures.range_from in VisitAction()
4648 os_ << "];\n"; in VisitAction()
4651 os_ << " n" << that << " -> n" << successor << ";\n"; in VisitAction()
4658 explicit DispatchTableDumper(std::ostream& os) : os_(os) {} in DispatchTableDumper()
4661 std::ostream& os_; member in v8::internal::DispatchTableDumper
4666 os_ << "[" << AsUC16(key) << "-" << AsUC16(entry.to()) << "]: {"; in Call()
4674 os_ << ", "; in Call()
4676 os_ << i; in Call()
4679 os_ << "}\n"; in Call()