| 33 | bool Double(double d) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.Double(d) && EndValue(); } |
| 34 | bool RawNumber(const Ch* str, SizeType len, bool copy) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.RawNumber(str, len, copy) && EndValue(); } |
| 35 | bool String (const Ch* str, SizeType len, bool copy) { return filterValueDepth_ > 0 ? EndValue() : outputHandler_.String (str, len, copy) && EndValue(); } |
| 36 | |
| 37 | bool StartObject() { |
| 38 | if (filterValueDepth_ > 0) { |
nothing calls this directly
no outgoing calls
no test coverage detected