Home
last modified time | relevance | path

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

/external/escapevelocity/src/main/java/com/google/escapevelocity/
DMethodFinder.java55 private final Table<Class<?>, String, ImmutableSet<Method>> methodCache = HashBasedTable.create(); field in MethodFinder
66 ImmutableSet<Method> cachedMethods = methodCache.get(startClass, name); in publicMethodsWithName()
69 methodCache.put(startClass, name, cachedMethods); in publicMethodsWithName()
/external/turbine/java/com/google/turbine/processing/
DModelFactory.java110 private final Map<MethodSymbol, TurbineExecutableElement> methodCache = new HashMap<>(); field in ModelFactory
250 return methodCache.computeIfAbsent(symbol, k -> new TurbineExecutableElement(this, symbol)); in executableElement()