MCPcopy Create free account
hub / github.com/dillo-browser/dillo / intoStringBuffer

Method intoStringBuffer

dw/iterator.cc:58–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58void Iterator::intoStringBuffer(misc::StringBuffer *sb)
59{
60 sb->append ("{ widget = ");
61 //widget->intoStringBuffer (sb);
62 sb->appendPointer (widget);
63 sb->append (" (");
64 sb->append (widget->getClassName());
65 sb->append (")>");
66
67 sb->append (", mask = ");
68 Content::maskIntoStringBuffer (mask, sb);
69
70 sb->append (", content = ");
71 Content::intoStringBuffer (&content, sb);
72
73 sb->append (" }");
74}
75
76/**
77 * \brief Delete the iterator.

Callers

nothing calls this directly

Calls 3

appendPointerMethod · 0.80
getClassNameMethod · 0.80
appendMethod · 0.45

Tested by

no test coverage detected