Home
last modified time | relevance | path

Searched refs:getClassBytes (Results 1 – 3 of 3) sorted by relevance

/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/
DJarInstrumentor.java57 protected byte[] getClassBytes(String className) throws ClassNotFoundException { in instrumentJar()
58 return JarInstrumentor.getClassBytes(className, jarFile); in instrumentJar()
86 byte[] classBytes = getClassBytes(className, jarFile); in instrumentJar()
128 private static byte[] getClassBytes(String className, JarFile jarFile) in getClassBytes() method in JarInstrumentor
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DClassNodeProvider.java11 protected abstract byte[] getClassBytes(String className) throws ClassNotFoundException; in getClassBytes() method in ClassNodeProvider
23 byte[] byteCode = getClassBytes(internalClassName); in createClassNode()
DSandboxClassLoader.java51 protected byte[] getClassBytes(String internalClassName) throws ClassNotFoundException { in SandboxClassLoader()