Home
last modified time | relevance | path

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

/external/llvm-project/pstl/test/std/algorithms/alg.nonmodifying/
Dfind_if.pass.cpp26 template <typename Iterator, typename Predicate, typename NotPredicate>
29 NotPredicate not_pred) in operator ()()
32 template <typename Iterator, typename Predicate, typename NotPredicate>
35 NotPredicate not_pred) in operator ()()
40 template <typename Policy, typename Iterator, typename Predicate, typename NotPredicate>
42 operator()(Policy&& exec, Iterator first, Iterator last, Predicate pred, NotPredicate not_pred) in operator ()()
/external/guava/android/guava/src/com/google/common/base/
DPredicates.java83 return new NotPredicate<T>(predicate); in not()
307 private static class NotPredicate<T> implements Predicate<T>, Serializable { class in Predicates
310 NotPredicate(Predicate<T> predicate) { in NotPredicate() method in Predicates.NotPredicate
326 if (obj instanceof NotPredicate) { in equals()
327 NotPredicate<?> that = (NotPredicate<?>) obj; in equals()
/external/guava/guava/src/com/google/common/base/
DPredicates.java83 return new NotPredicate<T>(predicate); in not()
307 private static class NotPredicate<T> implements Predicate<T>, Serializable { class in Predicates
310 NotPredicate(Predicate<T> predicate) { in NotPredicate() method in Predicates.NotPredicate
326 if (obj instanceof NotPredicate) { in equals()
327 NotPredicate<?> that = (NotPredicate<?>) obj; in equals()
/external/tensorflow/tensorflow/compiler/jit/
Ddeadness_analysis.cc212 class NotPredicate : public Predicate { class
214 explicit NotPredicate(int64 id, Predicate* operand) in NotPredicate() function in tensorflow::__anonaeebdbfa0111::NotPredicate
503 if (auto* not_pred = dynamic_cast<NotPredicate*>(pred)) { in MakeNotPredicateImpl()
511 std::unique_ptr<Predicate> new_pred = Make<NotPredicate>(pred); in MakeNotPredicateImpl()