Home
last modified time | relevance | path

Searched refs:withClassLoader (Results 1 – 2 of 2) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/
DTestTypeFactoryWithClassLoader.java51 …TypeFactory spySut = spy(mapper.getTypeFactory().withModifier(typeModifier).withClassLoader(classL… in testUsesCorrectClassLoaderWhenThreadClassLoaderIsNull()
63 …TypeFactory spySut = spy(mapper.getTypeFactory().withModifier(typeModifier).withClassLoader(classL… in testUsesCorrectClassLoaderWhenThreadClassLoaderIsNotNull()
81 TypeFactory sut = mapper.getTypeFactory().withClassLoader(classLoader); in testCallingOnlyWithClassLoaderGivesExpectedResults()
88 TypeFactory sut = mapper.getTypeFactory().withModifier(typeModifier).withClassLoader(classLoader); in testDefaultTypeFactoryNotAffectedByWithConstructors()
97 TypeFactory sut = mapper.getTypeFactory().withModifier(typeModifier).withClassLoader(classLoader); in testSetsTheCorrectClassLoderIfUsingWithModifierFollowedByWithClassLoader()
103 TypeFactory sut = mapper.getTypeFactory().withClassLoader(classLoader).withModifier(typeModifier); in testSetsTheCorrectClassLoderIfUsingWithClassLoaderFollowedByWithModifier()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/
DTypeFactory.java214 public TypeFactory withClassLoader(ClassLoader classLoader) { in withClassLoader() method in TypeFactory