HomeSort by relevance Sort by last modified time
    Searched refs:Predicate (Results 1 - 25 of 613) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libcxx/test/std/utilities/function.objects/negators/
binary_negate.depr_in_cxx17.fail.cpp 26 struct Predicate {
33 std::binary_negate<Predicate> f((Predicate())); // expected-error{{'binary_negate<Predicate>' is deprecated}}
unary_negate.depr_in_cxx17.fail.cpp 26 struct Predicate {
32 std::unary_negate<Predicate> f((Predicate())); // expected-error{{'unary_negate<Predicate>' is deprecated}}
not1.depr_in_cxx17.fail.cpp 26 struct Predicate {
32 std::not1(Predicate()); // expected-error{{'not1<Predicate>' is deprecated}}
not2.depr_in_cxx17.fail.cpp 26 struct Predicate {
33 std::not2(Predicate()); // expected-error{{'not2<Predicate>' is deprecated}}
  /external/swiftshader/third_party/LLVM/lib/Target/PowerPC/MCTargetDesc/
PPCPredicates.h 1 //===-- PPCPredicates.h - PPC Branch Predicate Information ------*- C++ -*-===//
19 /// Predicate - These are "(BI << 5) | BO" for various predicates.
20 enum Predicate {
32 /// Invert the specified predicate. != -> ==, < -> >=.
33 Predicate InvertPredicate(Predicate Opcode);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCPredicates.h 1 //===-- PPCPredicates.h - PPC Branch Predicate Information ------*- C++ -*-===//
26 /// Predicate - These are "(BI << 5) | BO" for various predicates.
27 enum Predicate {
70 /// Invert the specified predicate. != -> ==, < -> >=.
71 Predicate InvertPredicate(Predicate Opcode);
73 /// Assume the condition register is set by MI(a,b), return the predicate if
75 Predicate getSwappedPredicate(Predicate Opcode);
78 inline unsigned getPredicateCondition(Predicate Opcode)
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
Predicate.java 3 public interface Predicate<T> {
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
CmpInstAnalysis.h 24 /// Encode a icmp predicate into a three bit mask. These bits are carefully
50 /// operands into either a constant true or false, or the predicate for a new
52 /// predicate to use in the new icmp instruction.
54 /// NULL return means a new ICmp is needed. The predicate for which is output
57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
64 /// returned predicate is either == or !=. Returns false if decomposition
66 bool decomposeBitTestICmp(Value *LHS, Value *RHS, CmpInst::Predicate &Pred,
  /external/llvm/include/llvm/Transforms/Utils/
CmpInstAnalysis.h 24 /// getICmpCode - Encode a icmp predicate into a three bit mask. These bits
51 /// predicate for a new ICmp instruction. The sign is passed in to determine
52 /// which kind of predicate to use in the new icmp instruction.
54 /// NULL return means a new ICmp is needed. The predicate for which is
57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
  /external/droiddriver/src/io/appium/droiddriver/finders/
Predicates.java 26 * Static utility methods pertaining to {@code Predicate} instances.
33 private static final Predicate<Object> ANY = new Predicate<Object>() {
46 * Returns a predicate that always evaluates to {@code true}.
49 public static <T> Predicate<T> any() {
50 return (Predicate<T>) ANY;
54 * Returns a predicate that is the negation of the provided {@code predicate}.
56 public static <T> Predicate<T> not(final Predicate<T> predicate)
    [all...]
Predicate.java 33 public interface Predicate<T> {
35 * Returns the result of applying this predicate to {@code input}.
44 * Predicate.
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCPredicates.h 1 //===-- PPCPredicates.h - PPC Branch Predicate Information ------*- C++ -*-===//
26 /// Predicate - These are "(BI << 5) | BO" for various predicates.
27 enum Predicate {
67 /// Invert the specified predicate. != -> ==, < -> >=.
68 Predicate InvertPredicate(Predicate Opcode);
70 /// Assume the condition register is set by MI(a,b), return the predicate if
72 Predicate getSwappedPredicate(Predicate Opcode);
  /external/libcxx/test/support/
counting_predicates.hpp 15 template <typename Predicate, typename Arg>
21 unary_counting_predicate(Predicate p) : p_(p), count_(0) {}
29 Predicate p_;
34 template <typename Predicate, typename Arg1, typename Arg2=Arg1>
41 binary_counting_predicate ( Predicate p ) : p_(p), count_(0) {}
49 Predicate p_;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
ARMLegalizerInfo.h 42 // The predicate to be used when comparing the value returned by the
48 CmpInst::Predicate Predicate;
52 // Map from each FCmp predicate to the corresponding libcall infos. A FCmp
60 // Get the libcall(s) corresponding to \p Predicate for operands of \p Size
62 FCmpLibcallsList getFCmpLibcalls(CmpInst::Predicate, unsigned Size) const;
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Predicates.java 32 * Static utility methods pertaining to {@code Predicate} instances.
39 * use of {@code Predicate}</a>.
52 * Returns a predicate that always evaluates to {@code true}.
55 public static <T> Predicate<T> alwaysTrue() {
60 * Returns a predicate that always evaluates to {@code false}.
63 public static <T> Predicate<T> alwaysFalse() {
68 * Returns a predicate that evaluates to {@code true} if the object reference
72 public static <T> Predicate<T> isNull() {
77 * Returns a predicate that evaluates to {@code true} if the object reference
81 public static <T> Predicate<T> notNull()
258 final Predicate<T> predicate; field in class:Predicates.NotPredicate
    [all...]
  /external/desugar/test/java/com/google/devtools/build/android/desugar/testdata/separate/
SeparateInterface.java 16 import java.util.function.Predicate;
18 public interface SeparateInterface<T extends Number> extends Predicate<T> {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
FieldUtil.java 34 import com.google.common.base.Predicate;
42 public static Predicate<Field> FIELD_IS_STATIC = new Predicate<Field>() {
48 public static Predicate<Field> FIELD_IS_INSTANCE = new Predicate<Field>() {
  /external/tensorflow/tensorflow/compiler/jit/
deadness_analysis.cc 34 // control dependence) into an instance of the Predicate class. Instances of
35 // Predicate denote logical formulas and mapping a node `n` to a predicate
37 // mismatching liveness in the inputs to node by comparing the predicate those
47 // predicate based on the predicates its inputs are mapped to. For instance a
60 // [S,S&X,S&X&X,S&X&X, ...]. So {S,&,X} can be used to represent the predicate
78 // Where S is the predicate for Init and X is the predicate that asserts that
90 // predicate to merge nodes with backedges. On the second pass it tries to
98 // matching easier: if we assigned the predicate of the initial value to th
    [all...]
  /external/guava/guava/src/com/google/common/base/
Predicates.java 35 * Static utility methods pertaining to {@code Predicate} instances.
42 * use of {@code Predicate}</a>.
55 * Returns a predicate that always evaluates to {@code true}.
58 public static <T> Predicate<T> alwaysTrue() {
63 * Returns a predicate that always evaluates to {@code false}.
66 public static <T> Predicate<T> alwaysFalse() {
71 * Returns a predicate that evaluates to {@code true} if the object reference
75 public static <T> Predicate<T> isNull() {
80 * Returns a predicate that evaluates to {@code true} if the object reference
84 public static <T> Predicate<T> notNull()
321 final Predicate<T> predicate; field in class:Predicates.NotPredicate
    [all...]
  /external/v8/src/
unicode-cache.h 33 unibrow::Predicate<IdentifierStart, 128> kIsIdentifierStart;
34 unibrow::Predicate<IdentifierPart, 128> kIsIdentifierPart;
35 unibrow::Predicate<WhiteSpace, 128> kIsWhiteSpace;
36 unibrow::Predicate<WhiteSpaceOrLineTerminator, 128>
  /external/guava/guava/src/com/google/common/collect/
FilteredMultimap.java 20 import com.google.common.base.Predicate;
33 Predicate<? super Entry<K, V>> entryPredicate();
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
proto.h 429 extern Predicate *find_predicates(Node *); /* MR10 */
430 extern Predicate *MR_find_predicates_and_supp(Node *); /* MR13 */
432 extern void predicate_free(Predicate *); /* MR10 */
433 extern Predicate * predicate_dup(Predicate *); /* MR10 */
434 extern Predicate * predicate_dup_without_context(Predicate *); /* MR11 */
441 extern Tree *tdif(Tree *, Predicate *, set *, set *);
442 extern set covered_set(Predicate *);
468 extern void genPredTree( Predicate *p, Node *j, int ,int);
    [all...]
  /cts/hostsidetests/inputmethodservice/deviceside/devicetest/src/android/inputmethodservice/cts/devicetest/
SequenceMatcher.java 23 import java.util.function.Predicate;
56 * Accumulate continuous sequence of elements that satisfy specified {@link Predicate}s.
61 private final Predicate<E>[] mPredicates;
64 SequenceAccumulator(Predicate<E>... predicates) {
131 final IntFunction<Predicate<E>[]> arraySupplier = Predicate[]::new;
132 return of(Arrays.stream(elements).map(Predicate::isEqual).toArray(arraySupplier));
140 * @param predicates array of {@link Predicate<E>} that each of sequence element should satisfy.
144 static <E> Collector<E, ?, MatchResult<E>> of(Predicate<E>... predicates) {
146 throw new IllegalArgumentException("At least one Predicate.")
    [all...]
  /external/Reactive-Extensions/RxCpp/Ix/CPP/src/cpplinq/
linq_where.hpp 9 template <class Collection, class Predicate>
25 cursor(const inner_cursor& cur, const Predicate& p) : cur(cur), pred(p)
53 Predicate pred;
56 linq_where(const Collection& c, Predicate pred) : c(c), pred(pred) {}
64 Predicate pred;
  /external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
remove_if.pass.cpp 12 // template <class Predicate> void remove_if(Predicate pred);
32 typedef unary_counting_predicate<bool(*)(T), T> Predicate;
38 Predicate cp(g);
45 typedef unary_counting_predicate<bool(*)(T), T> Predicate;
50 Predicate cp(g);
57 typedef unary_counting_predicate<bool(*)(T), T> Predicate;
63 Predicate cp(g);
70 typedef unary_counting_predicate<bool(*)(T), T> Predicate;
74 Predicate cp(g)
    [all...]

Completed in 1025 milliseconds

1 2 3 4 5 6 7 8 91011>>