Home
last modified time | relevance | path

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

/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DInstrumentationConfiguration.java44 private final Set<MethodRef> interceptedMethods; field in InstrumentationConfiguration
55 Collection<MethodRef> interceptedMethods, in InstrumentationConfiguration() argument
63 this.interceptedMethods = ImmutableSet.copyOf(interceptedMethods); in InstrumentationConfiguration()
139 return Collections.unmodifiableSet(interceptedMethods); in methodsToIntercept()
184 if (!interceptedMethods.equals(that.interceptedMethods)) return false; in equals()
199 result = 31 * result + interceptedMethods.hashCode(); in hashCode()
237 public final Collection<MethodRef> interceptedMethods = new HashSet<>(); field in InstrumentationConfiguration.Builder
250 interceptedMethods.addAll(classLoaderConfig.interceptedMethods); in Builder()
280 interceptedMethods.add(methodReference); in addInterceptedMethod()
307 interceptedMethods, in build()