Home | History | Annotate | Download | only in regexp

Lines Matching refs:DotPrinter

4439 class DotPrinter: public NodeVisitor {
4441 DotPrinter(std::ostream& os, bool ignore_case) // NOLINT
4458 void DotPrinter::PrintNode(const char* label, RegExpNode* node) {
4479 void DotPrinter::Visit(RegExpNode* node) {
4486 void DotPrinter::PrintOnFailure(RegExpNode* from, RegExpNode* on_failure) {
4572 void DotPrinter::PrintAttributes(RegExpNode* that) {
4590 void DotPrinter::VisitChoice(ChoiceNode* that) {
4613 void DotPrinter::VisitText(TextNode* that) {
4649 void DotPrinter::VisitBackReference(BackReferenceNode* that) {
4658 void DotPrinter::VisitEnd(EndNode* that) {
4664 void DotPrinter::VisitAssertion(AssertionNode* that) {
4691 void DotPrinter::VisitAction(ActionNode* that) {
4772 DotPrinter printer(os, ignore_case);