Searched refs:Predicate (Results 1 - 25 of 289) sorted by relevance

1234567891011>>

/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DPredicate.java18 public interface Predicate { interface
H A DDuplicatesPredicate.java21 public class DuplicatesPredicate implements Predicate {
H A DNamingPolicy.java33 String getClassName(String prefix, String source, Object key, Predicate names);
H A DRejectModifierPredicate.java20 public class RejectModifierPredicate implements Predicate {
/external/llvm/include/llvm/Transforms/Utils/
H A DCmpInstAnalysis.h57 CmpInst::Predicate &NewICmpPred);
61 bool PredicatesFoldable(CmpInst::Predicate p1, CmpInst::Predicate p2);
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCPredicates.h1 //===-- PPCPredicates.h - PPC Branch Predicate Information ------*- C++ -*-===//
26 /// Predicate - These are "(BI << 5) | BO" for various predicates.
27 enum Predicate { enum in namespace:llvm::PPC
68 Predicate InvertPredicate(Predicate Opcode);
72 Predicate getSwappedPredicate(Predicate Opcode);
/external/droiddriver/src/io/appium/droiddriver/finders/
H A DPredicates.java24 * Static utility methods pertaining to {@code Predicate} instances.
29 private static final Predicate<Object> ANY = new Predicate<Object>() {
45 public static <T> Predicate<T> any() {
46 return (Predicate<T>) ANY;
52 public static <T> Predicate<T> not(final Predicate<T> predicate) {
53 return new Predicate<T>() {
72 public static <T> Predicate<T> allOf(final Predicate<
[all...]
H A DPredicate.java33 public interface Predicate<T> { interface
44 * Predicate.
H A DMatchFinder.java30 protected final Predicate<? super UiElement> predicate;
32 public MatchFinder(Predicate<? super UiElement> predicate) {
/external/libcxx/test/support/
H A Dcounting_predicates.hpp14 template <typename Predicate, typename Arg>
17 unary_counting_predicate(Predicate p) : p_(p), count_(0) {}
25 Predicate p_;
30 template <typename Predicate, typename Arg1, typename Arg2=Arg1>
34 binary_counting_predicate ( Predicate p ) : p_(p), count_(0) {}
42 Predicate p_;
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DPredicates.java32 * Static utility methods pertaining to {@code Predicate} instances.
39 * use of {@code Predicate}</a>.
55 public static <T> Predicate<T> alwaysTrue() {
63 public static <T> Predicate<T> alwaysFalse() {
72 public static <T> Predicate<T> isNull() {
81 public static <T> Predicate<T> notNull() {
89 public static <T> Predicate<T> not(Predicate<T> predicate) {
102 public static <T> Predicate<T> and(
103 Iterable<? extends Predicate<
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DFieldUtil.java34 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/v8/src/
H A Dunicode-cache.h33 unibrow::Predicate<IdentifierStart, 128> kIsIdentifierStart;
34 unibrow::Predicate<IdentifierPart, 128> kIsIdentifierPart;
35 unibrow::Predicate<unibrow::LineTerminator, 128> kIsLineTerminator;
36 unibrow::Predicate<WhiteSpace, 128> kIsWhiteSpace;
37 unibrow::Predicate<WhiteSpaceOrLineTerminator, 128>
/external/guava/guava/src/com/google/common/base/
H A DPredicates.java35 * Static utility methods pertaining to {@code Predicate} instances.
42 * use of {@code Predicate}</a>.
58 public static <T> Predicate<T> alwaysTrue() {
66 public static <T> Predicate<T> alwaysFalse() {
75 public static <T> Predicate<T> isNull() {
84 public static <T> Predicate<T> notNull() {
92 public static <T> Predicate<T> not(Predicate<T> predicate) {
105 public static <T> Predicate<T> and(
106 Iterable<? extends Predicate<
[all...]
H A DPredicate.java30 * Predicate}</a>.
36 public interface Predicate<T> { interface
58 * {@link Predicate} that it considers <i>interchangeable</i> with this one. "Interchangeable"
/external/guava/guava/src/com/google/common/collect/
H A DFilteredMultimap.java20 import com.google.common.base.Predicate;
33 Predicate<? super Entry<K, V>> entryPredicate();
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
H A DPredicate.java25 public interface Predicate<T> { interface
32 public Predicate<T> predicate;
37 public PredicateIterator (final Iterable<T> iterable, final Predicate<T> predicate) {
41 public PredicateIterator (final Iterator<T> iterator, final Predicate<T> predicate) {
45 public void set (final Iterable<T> iterable, final Predicate<T> predicate) {
49 public void set (final Iterator<T> iterator, final Predicate<T> predicate) {
90 public Predicate<T> predicate;
93 public PredicateIterable (Iterable<T> iterable, Predicate<T> predicate) {
97 public void set (Iterable<T> iterable, Predicate<T> predicate) {
103 * {@link Predicate
[all...]
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
H A Dremove_if.pass.cpp12 // template <class Predicate> void remove_if(Predicate pred);
31 typedef unary_counting_predicate<bool(*)(T), T> Predicate; typedef
37 Predicate cp(g);
44 typedef unary_counting_predicate<bool(*)(T), T> Predicate; typedef
49 Predicate cp(g);
56 typedef unary_counting_predicate<bool(*)(T), T> Predicate; typedef
62 Predicate cp(g);
69 typedef unary_counting_predicate<bool(*)(T), T> Predicate; typedef
73 Predicate c
80 typedef unary_counting_predicate<bool(*)(T), T> Predicate; typedef
94 typedef unary_counting_predicate<bool(*)(T), T> Predicate; typedef
107 typedef unary_counting_predicate<bool(*)(T), T> Predicate; typedef
119 typedef unary_counting_predicate<bool(*)(T), T> Predicate; typedef
132 typedef unary_counting_predicate<bool(*)(T), T> Predicate; typedef
143 typedef unary_counting_predicate<bool(*)(T), T> Predicate; typedef
[all...]
/external/guava/guava-tests/test/com/google/common/base/
H A DPredicatesTest.java49 private static final Predicate<Integer> TRUE = Predicates.alwaysTrue();
50 private static final Predicate<Integer> FALSE = Predicates.alwaysFalse();
51 private static final Predicate<Integer> NEVER_REACHED =
52 new Predicate<Integer>() {
61 static class IsOdd implements Predicate<Integer>, Serializable {
79 * Generates a new Predicate per call.
81 * <p>Creating a new Predicate each time helps catch cases where code is
278 Collection<Predicate<Integer>> empty = Arrays.asList();
305 Predicate[] array = {Predicates.alwaysFalse()};
306 Predicate<Objec
[all...]
/external/droiddriver/src/io/appium/droiddriver/
H A DUiElement.java26 import io.appium.droiddriver.finders.Predicate;
208 List<? extends UiElement> getChildren(Predicate<? super UiElement> predicate);
213 Predicate<UiElement> VISIBLE = new Predicate<UiElement>() {
/external/libcxx/test/std/containers/sequences/list/list.ops/
H A Dremove_if.pass.cpp31 typedef unary_counting_predicate<bool(*)(int), int> Predicate; typedef
39 Predicate cp(g);
48 Predicate cp(even);
58 Predicate cp(g);
/external/llvm/lib/Transforms/Utils/
H A DCmpInstAnalysis.cpp45 ICmpInst::Predicate Pred = InvertPred ? ICI->getInversePredicate()
73 CmpInst::Predicate &NewICmpPred) {
92 bool llvm::PredicatesFoldable(ICmpInst::Predicate p1, ICmpInst::Predicate p2) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DFilteredMultimapTest.java20 import com.google.common.base.Predicate;
36 private static final Predicate<Map.Entry<String, Integer>> ENTRY_PREDICATE
37 = new Predicate<Map.Entry<String, Integer>>() {
50 private static final Predicate<String> KEY_PREDICATE
51 = new Predicate<String>() {
66 private static final Predicate<Integer> VALUE_PREDICATE
67 = new Predicate<Integer>() {
H A DMultimapsFilterEntriesAsMapTest.java20 import com.google.common.base.Predicate;
34 private static final Predicate<Map.Entry<String, Integer>> PREDICATE
35 = new Predicate<Map.Entry<String, Integer>>() {
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
H A DPredicatesTest.java44 private static final Predicate<Integer> TRUE = Predicates.alwaysTrue();
45 private static final Predicate<Integer> FALSE = Predicates.alwaysFalse();
46 private static final Predicate<Integer> NEVER_REACHED =
47 new Predicate<Integer>() {
56 static class IsOdd implements Predicate<Integer>, Serializable {
74 * Generates a new Predicate per call.
76 * <p>Creating a new Predicate each time helps catch cases where code is
235 Collection<Predicate<Integer>> empty = Arrays.asList();
256 Predicate[] array = {Predicates.alwaysFalse()};
257 Predicate<Objec
[all...]

Completed in 1948 milliseconds

1234567891011>>