Home
last modified time | relevance | path

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

/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
DPredicates.java90 return new NotPredicate<T>(predicate); in not()
257 private static class NotPredicate<T> implements Predicate<T>, Serializable { class in Predicates
260 NotPredicate(Predicate<T> predicate) { in NotPredicate() method in Predicates.NotPredicate
271 if (obj instanceof NotPredicate) { in equals()
272 NotPredicate<?> that = (NotPredicate<?>) obj; in equals()
/external/guava/guava/src/com/google/common/base/
DPredicates.java93 return new NotPredicate<T>(predicate); in not()
320 private static class NotPredicate<T> implements Predicate<T>, Serializable { class in Predicates
323 NotPredicate(Predicate<T> predicate) { in NotPredicate() method in Predicates.NotPredicate
334 if (obj instanceof NotPredicate) { in equals()
335 NotPredicate<?> that = (NotPredicate<?>) obj; in equals()
/external/tensorflow/tensorflow/compiler/jit/
Ddeadness_analysis.cc201 class NotPredicate : public Predicate { class
203 explicit NotPredicate(int64 id, Predicate* operand) in NotPredicate() function in tensorflow::__anon9db8ce5c0111::NotPredicate
418 if (auto* not_pred = dynamic_cast<NotPredicate*>(pred)) { in MakeNotPredicateImpl()
426 std::unique_ptr<Predicate> new_pred = Make<NotPredicate>(pred); in MakeNotPredicateImpl()