Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/result/
DBugreportCollector.java140 public boolean partialMatch(Predicate otherP) { in partialMatch() argument
141 return mSubPredicates.equals(otherP.getPredicate()); in partialMatch()
144 public boolean fullMatch(Predicate otherP) { in fullMatch() argument
145 if (partialMatch(otherP)) { in fullMatch()
147 return otherP.getFilterPredicate() == null; in fullMatch()
149 return mFilterSubPredicates.equals(otherP.getFilterPredicate()); in fullMatch()
173 Predicate otherP = (Predicate) other; in equals() local
174 return fullMatch(otherP); in equals()