Home
last modified time | relevance | path

Searched refs:_cfgPrettyPrinter (Results 1 – 4 of 4) sorted by relevance

/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DJsonGeneratorImpl.java221 _cfgPrettyPrinter.writeArrayValueSeparator(this); in _verifyPrettyValueWrite()
224 _cfgPrettyPrinter.writeObjectFieldValueSeparator(this); in _verifyPrettyValueWrite()
227 _cfgPrettyPrinter.writeRootValueSeparator(this); in _verifyPrettyValueWrite()
232 _cfgPrettyPrinter.beforeArrayValues(this); in _verifyPrettyValueWrite()
234 _cfgPrettyPrinter.beforeObjectEntries(this); in _verifyPrettyValueWrite()
DWriterBasedJsonGenerator.java168 if (_cfgPrettyPrinter != null) { in _writeFieldName()
197 if (_cfgPrettyPrinter != null) { in _writeFieldName()
251 if (_cfgPrettyPrinter != null) { in writeStartArray()
252 _cfgPrettyPrinter.writeStartArray(this); in writeStartArray()
266 if (_cfgPrettyPrinter != null) { in writeStartArray()
267 _cfgPrettyPrinter.writeStartArray(this); in writeStartArray()
281 if (_cfgPrettyPrinter != null) { in writeStartArray()
282 _cfgPrettyPrinter.writeStartArray(this); in writeStartArray()
297 if (_cfgPrettyPrinter != null) { in writeEndArray()
298 _cfgPrettyPrinter.writeEndArray(this, _writeContext.getEntryCount()); in writeEndArray()
[all …]
DUTF8JsonGenerator.java214 if (_cfgPrettyPrinter != null) { in writeFieldName()
264 if (_cfgPrettyPrinter != null) { in writeFieldName()
318 if (_cfgPrettyPrinter != null) { in writeStartArray()
319 _cfgPrettyPrinter.writeStartArray(this); in writeStartArray()
333 if (_cfgPrettyPrinter != null) { in writeStartArray()
334 _cfgPrettyPrinter.writeStartArray(this); in writeStartArray()
348 if (_cfgPrettyPrinter != null) { in writeStartArray()
349 _cfgPrettyPrinter.writeStartArray(this); in writeStartArray()
364 if (_cfgPrettyPrinter != null) { in writeEndArray()
365 _cfgPrettyPrinter.writeEndArray(this, _writeContext.getEntryCount()); in writeEndArray()
[all …]
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DJsonGenerator.java289 protected PrettyPrinter _cfgPrettyPrinter; field in JsonGenerator
498 _cfgPrettyPrinter = pp; in setPrettyPrinter()
509 return _cfgPrettyPrinter; in getPrettyPrinter()