MCPcopy Create free account
hub / github.com/cinder/Cinder / print_data_node

Function print_data_node

include/rapidxml/rapidxml_print.hpp:158–165  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

156 // Print data node
157 template<class OutIt, class Ch>
158 inline OutIt print_data_node(OutIt out, const xml_node<Ch> *node, int flags, int indent)
159 {
160 assert(node->type() == node_data);
161 if (!(flags & print_no_indenting))
162 out = fill_chars(out, indent, Ch('\t'));
163 out = copy_and_expand_chars(node->value(), node->value() + node->value_size(), Ch(0), out);
164 return out;
165 }
166
167 // Print data node
168 template<class OutIt, class Ch>

Callers 1

print_nodeFunction · 0.85

Calls 6

assertFunction · 0.85
fill_charsFunction · 0.85
copy_and_expand_charsFunction · 0.85
value_sizeMethod · 0.80
typeMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected