Home
last modified time | relevance | path

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

/libcore/tools/openjdk-analyzer/src/libcore/tools/analyzer/openjdk/
DSignaturesCollector.java44 private final List<Method> mMethods = new ArrayList<>(); field in SignaturesCollector
67 mMethods.add(method); in add()
100 collection.mMethods.stream() in add()
174 Collections.sort(mMethods); in getCollection()
175 return new SignaturesCollection(mClasses, mFields, mMethods); in getCollection()
182 private final LinkedHashSet<Method> mMethods; field in SignaturesCollector.SignaturesCollection
188 mMethods = new LinkedHashSet<>(methods); in SignaturesCollection()
199 return mMethods.stream(); in getMethodStream()
223 return mMethods.contains(method); in contains()
247 return mClasses.isEmpty() && mFields.isEmpty() && mMethods.isEmpty(); in isEmpty()