Home | History | Annotate | Download | only in src

Lines Matching refs:DotPrinter

4387 class DotPrinter: public NodeVisitor {
4389 DotPrinter(OStream& os, bool ignore_case) // NOLINT
4406 void DotPrinter::PrintNode(const char* label, RegExpNode* node) {
4427 void DotPrinter::Visit(RegExpNode* node) {
4434 void DotPrinter::PrintOnFailure(RegExpNode* from, RegExpNode* on_failure) {
4520 void DotPrinter::PrintAttributes(RegExpNode* that) {
4538 void DotPrinter::VisitChoice(ChoiceNode* that) {
4561 void DotPrinter::VisitText(TextNode* that) {
4597 void DotPrinter::VisitBackReference(BackReferenceNode* that) {
4606 void DotPrinter::VisitEnd(EndNode* that) {
4612 void DotPrinter::VisitAssertion(AssertionNode* that) {
4639 void DotPrinter::VisitAction(ActionNode* that) {
4720 DotPrinter printer(os, ignore_case);