Searched refs:otherP (Results 1 – 1 of 1) sorted by relevance
140 public boolean partialMatch(Predicate otherP) { in partialMatch() argument141 return mSubPredicates.equals(otherP.getPredicate()); in partialMatch()144 public boolean fullMatch(Predicate otherP) { in fullMatch() argument145 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() local174 return fullMatch(otherP); in equals()