| 56 | const std::vector<string>& regexes); |
| 57 | |
| 58 | bool ShouldShowIfExtra(const ShowMultiNode* node, const Options& opts, |
| 59 | int depth) const override { |
| 60 | if (opts.min_occurrence > node->node->graph_nodes().size()) { |
| 61 | return false; |
| 62 | } |
| 63 | return true; |
| 64 | } |
| 65 | |
| 66 | string FormatNode(OpNode* node, OpNode* root, const Options& opts) const; |
| 67 | string FormatMemoryNode(int64 node_total_bytes, int64 root_total_bytes, |