Searched refs:classForName (Results 1 – 5 of 5) sorted by relevance
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowSystemServiceRegistry.java | 21 classForName("android.app.SystemServiceRegistry"), "SYSTEM_SERVICE_FETCHERS"); in reset() 26 classForName("android.app.SystemServiceRegistry$StaticApplicationContextServiceFetcher"); in reset() 29 classForName("android.app.SystemServiceRegistry$StaticOuterContextServiceFetcher"); in reset() 33 classForName("android.app.SystemServiceRegistry$StaticServiceFetcher"); in reset() 45 private static Class classForName(String className) { in classForName() method in ShadowSystemServiceRegistry
|
/external/antlr/gunit/src/main/java/org/antlr/gunit/ |
D | gUnitExecutor.java | 108 protected final Class<?> classForName(String name) throws ClassNotFoundException { in classForName() method in gUnitExecutor 242 lexer = classForName(lexerName).asSubclass(Lexer.class); in runLexer() 317 lexer = classForName(lexerName).asSubclass(Lexer.class); in runParser() 323 parser = classForName(parserName).asSubclass(Parser.class); in runParser() 330 …Class<? extends TreeAdaptor> _treeAdaptor = classForName(grammarInfo.getAdaptor()).asSubclass(Tree… in runParser() 353 Class<?> _return = classForName(parserName+"$"+testRuleName+"_return"); in runParser() 449 lexer = classForName(lexerName).asSubclass(Lexer.class); in runTreeParser() 455 parser = classForName(parserName).asSubclass(Parser.class); in runTreeParser() 463 …Class<? extends TreeAdaptor> _treeAdaptor = classForName(grammarInfo.getAdaptor()).asSubclass(Tree… in runTreeParser() 482 Class<?> _return = classForName(parserName+"$"+testRuleName+"_return"); in runTreeParser() [all …]
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/type/ |
D | TestTypeFactoryWithClassLoader.java | 54 verify(spySut).classForName(any(String.class), any(Boolean.class), eq(classLoader)); in testUsesCorrectClassLoaderWhenThreadClassLoaderIsNull() 66 verify(spySut).classForName(any(String.class), any(Boolean.class), eq(classLoader)); in testUsesCorrectClassLoaderWhenThreadClassLoaderIsNotNull() 113 verify(spySut).classForName(any(String.class), any(Boolean.class), eq(threadClassLoader)); in testThreadContextClassLoaderIsUsedIfNotUsingWithClassLoader() 124 verify(spySut).classForName(any(String.class)); in testUsesFallBackClassLoaderIfNoThreadClassLoaderAndNoWithClassLoader()
|
/external/auto/value/src/main/java/com/google/auto/value/processor/ |
D | TypeEncoder.java | 455 classes.add(classForName(className)); in findReferencedClasses() 461 private DeclaredType classForName(String className) { in classForName() method in TypeEncoder.TypeRewriter 469 DeclaredType type = classForName(className); in decode()
|
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/type/ |
D | TypeFactory.java | 311 return classForName(className, true, loader); in findClass() 317 return classForName(className); in findClass() 327 protected Class<?> classForName(String name, boolean initialize, in classForName() method in TypeFactory 332 protected Class<?> classForName(String name) throws ClassNotFoundException { in classForName() method in TypeFactory
|