Home
last modified time | relevance | path

Searched refs:copyCurrentStructure (Results 1 – 13 of 13) sorted by relevance

/external/jackson-core/src/test/java/com/fasterxml/jackson/core/write/
DGeneratorCopyTest.java56 gen.copyCurrentStructure(jp); in testCopyArrayTokens()
75 gen.copyCurrentStructure(jp); in testCopyObjectTokens()
89 gen.copyCurrentStructure(jp); in testCopyObjectTokens()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/
DTestJacksonTypes.java120 b.copyCurrentStructure(p); in testDeeplyNestedArrays()
131 b.copyCurrentStructure(p); in testDeeplyNestedObjects()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DExternalTypeHandler.java160 tokens.copyCurrentStructure(p); in handlePropertyValue()
181 tokens.copyCurrentStructure(p); in handlePropertyValue()
340 merged.copyCurrentStructure(p2); in _deserialize()
366 merged.copyCurrentStructure(p2); in _deserializeAndSet()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/util/
DJsonGeneratorDelegate.java466 public void copyCurrentStructure(JsonParser p) throws IOException { in copyCurrentStructure() method in JsonGeneratorDelegate
467 if (delegateCopyMethods) delegate.copyCurrentStructure(p); in copyCurrentStructure()
468 else super.copyCurrentStructure(p); in copyCurrentStructure()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/
DBeanDeserializer.java515 unknown.copyCurrentStructure(p); in _deserializeUsingPropertyBased()
738 tokens.copyCurrentStructure(p); in deserializeWithUnwrapped()
795 tokens.copyCurrentStructure(p); in deserializeWithUnwrapped()
850 tokens.copyCurrentStructure(p); in deserializeUsingPropertyBasedWithUnwrapped()
894 tokens.copyCurrentStructure(p); in deserializeUsingPropertyBasedWithUnwrapped()
1036 tokens.copyCurrentStructure(p); in deserializeUsingPropertyBasedWithExternalTypeId()
DBuilderBasedDeserializer.java431 unknown.copyCurrentStructure(p); in _deserializeUsingPropertyBased()
626 tokens.copyCurrentStructure(p); in deserializeWithUnwrapped()
691 tokens.copyCurrentStructure(p); in deserializeUsingPropertyBasedWithUnwrapped()
737 tokens.copyCurrentStructure(p); in deserializeWithUnwrapped()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DTokenBuffer.java202 b.copyCurrentStructure(p); in asCopyOfValue()
329 copyCurrentStructure(p); in append()
482 copyCurrentStructure(p); in deserialize()
492 copyCurrentStructure(p); in deserialize()
1107 public void copyCurrentStructure(JsonParser p) throws IOException in copyCurrentStructure() method in TokenBuffer
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/util/
DTestDelegates.java417 del.copyCurrentStructure(p); in testDelegateCopyMethods()
443 jg.copyCurrentStructure(jp); in testNotDelegateCopyMethods()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/jsontype/impl/
DAsPropertyTypeDeserializer.java105 tb.copyCurrentStructure(p); in deserializeTypedFromObject()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/
DBaseTest.java441 g.copyCurrentStructure(p); in writeJsonDoc()
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DJsonGenerator.java2014 public void copyCurrentStructure(JsonParser p) throws IOException in copyCurrentStructure() method in JsonGenerator
/external/jackson-core/release-notes/
DVERSION-2.x114 - Rewrite `JsonGenerator.copyCurrentStructure()` to remove recursion)
/external/jackson-databind/release-notes/
DCREDITS-2.x950 * Suggested #2398: Replace recursion in `TokenBuffer.copyCurrentStructure()` with iteration