Home
last modified time | relevance | path

Searched refs:writeRawValue (Results 1 – 16 of 16) sorted by relevance

/external/jackson-core/src/main/java/com/fasterxml/jackson/core/util/
DJsonGeneratorDelegate.java306 public void writeRawValue(String text) throws IOException { delegate.writeRawValue(text); } in writeRawValue() method in JsonGeneratorDelegate
309 …public void writeRawValue(String text, int offset, int len) throws IOException { delegate.writeRaw… in writeRawValue() method in JsonGeneratorDelegate
312 …public void writeRawValue(char[] text, int offset, int len) throws IOException { delegate.writeRaw… in writeRawValue() method in JsonGeneratorDelegate
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/json/
DRawValueWithSurrogatesTest.java80 g.writeRawValue(ch, OFFSET, ch.length - OFFSET); in _testRawWithSurrogatesString()
82 g.writeRawValue(text, OFFSET, text.length() - OFFSET); in _testRawWithSurrogatesString()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/base/
DGeneratorBase.java325 @Override public void writeRawValue(String text) throws IOException { in writeRawValue() method in GeneratorBase
330 @Override public void writeRawValue(String text, int offset, int len) throws IOException { in writeRawValue() method in GeneratorBase
335 @Override public void writeRawValue(char[] text, int offset, int len) throws IOException { in writeRawValue() method in GeneratorBase
340 @Override public void writeRawValue(SerializableString text) throws IOException { in writeRawValue() method in GeneratorBase
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/filter/
DBasicGeneratorFilteringTest.java252 gen.writeRawValue(new SerializedString("1")); in testSingleMatchFilteringWithPathRawBinary()
253 gen.writeRawValue("2"); in testSingleMatchFilteringWithPathRawBinary()
445 gen.writeRawValue(new char[] { '1'}, 0, 1); in testRawValueDelegationWithArray()
446 gen.writeRawValue("123", 2, 1); in testRawValueDelegationWithArray()
467 gen.writeRawValue(new char[]{'1', '2', '.', '3', '-'}, 0, 4); in testRawValueDelegationWithObject()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DRawValue.java97 gen.writeRawValue((SerializableString) _value); in _serialize()
99 gen.writeRawValue(String.valueOf(_value)); in _serialize()
DTokenBuffer.java829 public void writeRawValue(String text) throws IOException { in writeRawValue() method in TokenBuffer
834 public void writeRawValue(String text, int offset, int len) throws IOException { in writeRawValue() method in TokenBuffer
842 public void writeRawValue(char[] text, int offset, int len) throws IOException { in writeRawValue() method in TokenBuffer
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/filter/
DFilteringGeneratorDelegate.java577 public void writeRawValue(String text) throws IOException in writeRawValue() method in FilteringGeneratorDelegate
580 delegate.writeRawValue(text); in writeRawValue()
585 public void writeRawValue(String text, int offset, int len) throws IOException in writeRawValue() method in FilteringGeneratorDelegate
588 delegate.writeRawValue(text, offset, len); in writeRawValue()
593 public void writeRawValue(char[] text, int offset, int len) throws IOException in writeRawValue() method in FilteringGeneratorDelegate
596 delegate.writeRawValue(text, offset, len); in writeRawValue()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/write/
DGeneratorMiscTest.java123 gen.writeRawValue("7"); in testRawValue()
124 gen.writeRawValue("[ null ]"); in testRawValue()
125 gen.writeRawValue("false"); in testRawValue()
DRawStringWriteTest.java100 jgen.writeRawValue(new SerializedString("\"foo\"")); in _testWriteRawWithSerializable()
101 jgen.writeRawValue(new SerializedString("12")); in _testWriteRawWithSerializable()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DJsonGenerator.java1217 public abstract void writeRawValue(String text) throws IOException; in writeRawValue() method in JsonGenerator
1219 public abstract void writeRawValue(String text, int offset, int len) throws IOException; in writeRawValue() method in JsonGenerator
1221 public abstract void writeRawValue(char[] text, int offset, int len) throws IOException; in writeRawValue() method in JsonGenerator
1230 public void writeRawValue(SerializableString raw) throws IOException { in writeRawValue() method in JsonGenerator
1231 writeRawValue(raw.getValue()); in writeRawValue()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/
DRawSerializer.java31 jgen.writeRawValue(value.toString()); in serialize()
/external/jackson-core/release-notes/
DCREDITS-2.x28 * Reported #115: JsonGenerator writeRawValue problem with surrogate UTF-8 characters
DVERSION-2.x92 #484: Implement `UTF8JsonGenerator.writeRawValue(SerializableString)` (and
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/
DTestDelegates.java398 del.writeRawValue("/*foo*/"); in testGeneratorDelegateComments()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/util/
DTestTokenBuffer.java641 buf.writeRawValue(RAW); in testRawValues()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DUTF8JsonGenerator.java728 public void writeRawValue(SerializableString text) throws IOException { in writeRawValue() method in UTF8JsonGenerator