HomeSort by relevance Sort by last modified time
    Searched defs:methodGraph (Results 1 - 2 of 2) sorted by null

  /external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
MockMethodAdvice.java 10 import net.bytebuddy.dynamic.scaffold.MethodGraph;
43 private final MethodGraph.Compiler compiler = MethodGraph.Compiler.Default.forJavaHierarchy();
44 private final WeakConcurrentMap<Class<?>, SoftReference<MethodGraph>> graphs
45 = new WeakConcurrentMap.WithInlinedExpunction<Class<?>, SoftReference<MethodGraph>>();
130 SoftReference<MethodGraph> reference = graphs.get(instance.getClass());
131 MethodGraph methodGraph = reference == null ? null : reference.get();
132 if (methodGraph == null) {
133 methodGraph = compiler.compile(new TypeDescription.ForLoadedType(instance.getClass()))
    [all...]
  /external/mockito/lib/
byte-buddy-1.8.15.jar 

Completed in 80 milliseconds