HomeSort by relevance Sort by last modified time
    Searched defs:predicate (Results 1 - 25 of 168) sorted by null

1 2 3 4 5 6 7

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRFailedPredicateException.h 33 NSString *predicate; variable
37 @property (retain, getter=getPredicate, setter=setPredicate:) NSString *predicate; variable
40 + (ANTLRFailedPredicateException *) exceptionWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
41 - (ANTLRFailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRFailedPredicateException.h 33 NSString *predicate; variable
37 @property (retain, getter=getPredicate, setter=setPredicate:) NSString *predicate; variable
40 + (ANTLRFailedPredicateException *) exceptionWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
41 - (ANTLRFailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRFailedPredicateException.h 33 NSString *predicate; variable
37 @property (retain, getter=getPredicate, setter=setPredicate:) NSString *predicate; variable
40 + (ANTLRFailedPredicateException *) exceptionWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
41 - (ANTLRFailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRFailedPredicateException.h 33 NSString *predicate; variable
37 @property (retain) NSString *predicate; variable
40 + (ANTLRFailedPredicateException *) newException:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
41 - (ANTLRFailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
  /external/v8/test/webkit/
array-every.js 37 var predicate = {
43 shouldBeFalse("[12, 5, 10, 130, 44].every(isBigEnough, predicate)");
44 shouldBeTrue("[12, 54, 18, 130, 44].every(isBigEnough, predicate)");
  /external/droiddriver/src/io/appium/droiddriver/finders/
MatchFinder.java 27 * {@link #predicate}.
30 protected final Predicate<? super UiElement> predicate; field in class:MatchFinder
32 public MatchFinder(Predicate<? super UiElement> predicate) {
33 if (predicate == null) {
34 this.predicate = Predicates.any();
36 this.predicate = predicate;
42 return predicate.toString()
    [all...]
  /external/mesa3d/src/glsl/
ir_expression_flattening.cpp 28 * assignments of the leaves to temporaries, according to a predicate.
42 ir_expression_flattening_visitor(bool (*predicate)(ir_instruction *ir))
44 this->predicate = predicate;
53 bool (*predicate)(ir_instruction *ir); member in class:ir_expression_flattening_visitor
58 bool (*predicate)(ir_instruction *ir))
60 ir_expression_flattening_visitor v(predicate);
76 if (!ir || !this->predicate(ir))
  /frameworks/base/core/java/com/android/internal/util/
Predicates.java 23 * {@code Predicate} objects.
31 * Returns a Predicate that evaluates to true iff each of its components
35 public static <T> Predicate<T> and(Predicate<? super T>... components) {
40 * Returns a Predicate that evaluates to true iff each of its components
44 * the behavior of this Predicate. If components is empty, the returned
45 * Predicate will always evaluate to true.
47 public static <T> Predicate<T> and(Iterable<? extends Predicate<? super T>> components) {
52 * Returns a Predicate that evaluates to true iff any one of its component
115 private final Predicate<? super T> predicate; field in class:Predicates.NotPredicate
    [all...]
  /external/guice/core/test/com/google/inject/matcher/
MatcherTest.java 141 Matcher<Method> predicate = returns(only(String.class)); local
142 assertTrue(predicate.matches(
144 assertFalse(predicate.matches(
147 assertEqualsBothWays(predicate, returns(only(String.class)));
148 assertFalse(predicate.equals(returns(only(Integer.class))));
  /external/guice/jdk8-tests/test/com/google/inject/jdk8/
Java8LanguageFeatureBindingTest.java 36 import java.util.function.Predicate;
52 bind(new TypeLiteral<Predicate<Object>>() {}).toInstance(o -> o != null);
56 Predicate<Object> predicate = injector.getInstance(new Key<Predicate<Object>>() {}); local
57 assertTrue(predicate.test(new Object()));
58 assertFalse(predicate.test(null));
  /external/guava/guava/src/com/google/common/collect/
Multisets.java 27 import com.google.common.base.Predicate;
240 * Returns a view of the elements of {@code unfiltered} that satisfy a predicate. The returned
246 * that doesn't satisfy the predicate, the multiset's {@code add()} and {@code addAll()} methods
258 * <p><b>Warning:</b> {@code predicate} must be <i>consistent with equals</i>, as documented at
259 * {@link Predicate#apply}. Do not provide a predicate such as
266 public static <E> Multiset<E> filter(Multiset<E> unfiltered, Predicate<? super E> predicate) {
271 Predicate<E> combinedPredicate
272 = Predicates.<E>and(filtered.predicate, predicate)
280 final Predicate<? super E> predicate; field in class:Multisets.FilteredMultiset
331 "Element %s does not match predicate %s", element, predicate); local
    [all...]
Collections2.java 31 import com.google.common.base.Predicate;
60 * Returns the elements of {@code unfiltered} that satisfy a predicate. The
66 * doesn't satisfy the predicate, the collection's {@code add()} and {@code
78 * it may be faster to copy {@code Iterables.filter(unfiltered, predicate)}
81 * <p><b>Warning:</b> {@code predicate} must be <i>consistent with equals</i>,
82 * as documented at {@link Predicate#apply}. Do not provide a predicate such
90 Collection<E> unfiltered, Predicate<? super E> predicate) {
94 return ((FilteredCollection<E>) unfiltered).createCombined(predicate);
136 final Predicate<? super E> predicate; field in class:Collections2.FilteredCollection
    [all...]
  /bionic/tests/
math_data_test.h 154 FpUlpEq<ULP, RT> predicate; local
156 EXPECT_PRED_FORMAT2(predicate,
200 FpUlpEq<ULP, RT> predicate; local
202 EXPECT_PRED_FORMAT2(predicate,
279 FpUlpEq<ULP, RT> predicate; local
281 EXPECT_PRED_FORMAT2(predicate,
  /external/caliper/caliper/src/main/java/com/google/caliper/memory/
ObjectGraphMeasurer.java 23 import com.google.common.base.Predicate;
164 * graph), and any object for which the user-provided predicate returns
168 * @param objectAcceptor a predicate that returns {@code true} for objects
173 public static Footprint measure(Object rootObject, Predicate<Object> objectAcceptor) {
174 Preconditions.checkNotNull(objectAcceptor, "predicate");
176 Predicate<Chain> completePredicate = Predicates.and(ImmutableList.of(
192 private final Predicate<Chain> predicate; field in class:ObjectGraphMeasurer.ObjectGraphVisitor
194 ObjectGraphVisitor(Predicate<Chain> predicate) {
    [all...]
  /external/droiddriver/src/io/appium/droiddriver/scroll/
SentinelStrategy.java 27 import io.appium.droiddriver.finders.Predicate;
44 protected final Predicate<? super UiElement> predicate; field in class:SentinelStrategy.Getter
51 protected Getter(Predicate<? super UiElement> predicate) {
52 this.predicate = predicate;
62 UiElement sentinel = getSentinel(container.getChildren(predicate));
143 * Decorates a {@link Getter} by adding another {@link Predicate}.
148 public MorePredicateGetter(Getter original, Predicate<? super UiElement> extraPredicate)
    [all...]
  /external/guava/guava/src/com/google/common/base/
Functions.java 239 * Creates a function that returns the same boolean output as the given predicate for all inputs.
242 * Function#apply}) if and only if {@code predicate} is itself consistent with equals.
244 public static <T> Function<T, Boolean> forPredicate(Predicate<T> predicate) {
245 return new PredicateFunction<T>(predicate);
250 private final Predicate<T> predicate; field in class:Functions.PredicateFunction
252 private PredicateFunction(Predicate<T> predicate) {
253 this.predicate = checkNotNull(predicate)
    [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.0-beta-4584/
kotlin-stdlib-1.0.0-beta-4584.jar 
  /prebuilts/tools/common/offline-m2/org/jetbrains/kotlin/kotlin-stdlib/1.0.0-beta-4584/
kotlin-stdlib-1.0.0-beta-4584.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.0-rc-1036/
kotlin-stdlib-1.0.0-rc-1036.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.0/
kotlin-stdlib-1.0.0.jar 
  /prebuilts/tools/common/offline-m2/org/jetbrains/kotlin/kotlin-stdlib/1.0.0/
kotlin-stdlib-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/0.12.613/
kotlin-stdlib-0.12.613.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.0.0-beta-1103/
kotlin-stdlib-1.0.0-beta-1103.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/0.13.1513/
kotlin-stdlib-0.13.1513.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/0.13.1514/
kotlin-stdlib-0.13.1514.jar 

Completed in 373 milliseconds

1 2 3 4 5 6 7