HomeSort by relevance Sort by last modified time
    Searched refs:predicate (Results 101 - 125 of 781) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.2-4/
kotlin-stdlib-1.1.2-4.jar 
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/
kotlin-stdlib-1.1.3.jar 
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/
kotlin-stdlib-1.1.3-2.jar 
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
kotlin-stdlib-1.2.20.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.1/
kotlin-stdlib-1.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/
kotlin-stdlib-1.1.3.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.51/
kotlin-stdlib-1.1.51.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.2.0/
kotlin-stdlib-1.2.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.2.20/
kotlin-stdlib-1.2.20.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-runtime/1.0.5/
kotlin-runtime.jar 
  /tools/metalava/src/main/java/com/android/tools/metalava/model/psi/
PsiConstructorItem.kt 30 import java.util.function.Predicate
96 fun findDelegate(predicate: Predicate<Item>, allowInexactMatch: Boolean = true): PsiConstructorItem? {
101 return if (predicate.test(it)) {
104 it.findDelegate(predicate, allowInexactMatch)
113 if (!predicate.test(superMethod)) {
114 return superMethod.findDelegate(predicate, allowInexactMatch)
123 if (predicate.test(constructor)) {
126 val superMethod = constructor.findDelegate(predicate, allowInexactMatch)
  /libcore/ojluni/src/main/java/java/util/stream/
DoublePipeline.java 294 public final DoubleStream filter(DoublePredicate predicate) {
295 Objects.requireNonNull(predicate);
308 if (predicate.test(t))
481 public final boolean anyMatch(DoublePredicate predicate) {
482 return evaluate(MatchOps.makeDouble(predicate, MatchOps.MatchKind.ANY));
486 public final boolean allMatch(DoublePredicate predicate) {
487 return evaluate(MatchOps.makeDouble(predicate, MatchOps.MatchKind.ALL));
491 public final boolean noneMatch(DoublePredicate predicate) {
492 return evaluate(MatchOps.makeDouble(predicate, MatchOps.MatchKind.NONE));
LongPipeline.java 311 public final LongStream filter(LongPredicate predicate) {
312 Objects.requireNonNull(predicate);
325 if (predicate.test(t))
459 public final boolean anyMatch(LongPredicate predicate) {
460 return evaluate(MatchOps.makeLong(predicate, MatchOps.MatchKind.ANY));
464 public final boolean allMatch(LongPredicate predicate) {
465 return evaluate(MatchOps.makeLong(predicate, MatchOps.MatchKind.ALL));
469 public final boolean noneMatch(LongPredicate predicate) {
470 return evaluate(MatchOps.makeLong(predicate, MatchOps.MatchKind.NONE));
  /external/guava/guava/src/com/google/common/collect/
Iterators.java 35 import com.google.common.base.Predicate;
220 * Removes every element that satisfies the provided predicate from the
225 * @param predicate a predicate that determines whether an element should
231 Iterator<T> removeFrom, Predicate<? super T> predicate) {
232 checkNotNull(predicate);
235 if (predicate.apply(removeFrom.next())) {
642 * Returns the elements of {@code unfiltered} that satisfy a predicate.
645 final Iterator<T> unfiltered, final Predicate<? super T> predicate)
    [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/mesa3d/src/util/
set.c 369 int (*predicate)(struct set_entry *entry))
379 (!predicate || predicate(entry))) {
386 (!predicate || predicate(entry))) {
  /prebuilts/ktlint/
ktlint-android-all.jar 
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java 23 import com.google.common.base.Predicate;
607 final Predicate<Object> inSet2 = Predicates.in(set2);
644 final Predicate<Object> notInSet2 = Predicates.not(Predicates.in(set2));
683 * Returns the elements of {@code unfiltered} that satisfy a predicate. The
689 * the predicate, the set's {@code add()} and {@code addAll()} methods throw
700 * to copy {@code Iterables.filter(unfiltered, predicate)} and use the copy.
702 * <p><b>Warning:</b> {@code predicate} must be <i>consistent with equals</i>,
703 * as documented at {@link Predicate#apply}. Do not provide a predicate such
710 Set<E> unfiltered, Predicate<? super E> predicate)
    [all...]
  /cts/hostsidetests/statsd/src/android/cts/statsd/metric/
GaugeMetricsTests.java 25 import com.android.internal.os.StatsdConfigProto.Predicate;
57 // Add Predicate's.
62 Predicate predicate = Predicate.newBuilder() local
63 .setId(MetricsUtils.StringToId("Predicate"))
66 builder.addPredicate(predicate);
75 .setCondition(predicate.getId())
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
SemanticContext.java 40 * an NFA configuration is valid. It's either a single predicate or
52 * I have scoped the AND, NOT, OR, and Predicate subclasses of
65 public static final SemanticContext EMPTY_SEMANTIC_CONTEXT = new Predicate(Predicate.INVALID_PRED_VALUE);
87 public static class Predicate extends SemanticContext {
88 /** The AST node in tree created from the grammar holding the predicate */
91 /** Is this a {...}?=> gating predicate or a normal disambiguating {..}?
92 * If any predicate in expression is gated, then expression is considered
95 * The simple Predicate object's predicate AST's type is used to se
309 CommutativePredicate predicate = (CommutativePredicate)a; local
316 CommutativePredicate predicate = (CommutativePredicate)b; local
328 CommutativePredicate predicate = (CommutativePredicate)context; local
    [all...]
  /external/clang/test/Analysis/
unix-fns.c 39 void dispatch_once(dispatch_once_t *predicate, dispatch_block_t block);
62 do { if (__builtin_expect(*(&pred), ~0l) != ~0l) dispatch_once((&pred), (^() {})); } while (0); // expected-warning{{Call to 'dispatch_once' uses the local variable 'pred' for the predicate value}}
175 static inline void _dispatch_once(dispatch_once_t *predicate, dispatch_block_t block)
177 dispatch_once(predicate, block);
184 dispatch_once(&pred, ^(){}); // expected-warning {{Call to 'dispatch_once' uses the local variable 'pred' for the predicate value}}
552 // CHECK-NEXT: <string>Call to &apos;dispatch_once&apos; uses the local variable &apos;pred&apos; for the predicate value. Using such transient memory for the predicate is potentially dangerous. Perhaps you intended to declare the variable as &apos;static&apos;?</string>
554 // CHECK-NEXT: <string>Call to &apos;dispatch_once&apos; uses the local variable &apos;pred&apos; for the predicate value. Using such transient memory for the predicate is potentially dangerous. Perhaps you intended to declare the variable as &apos;static&apos;?</string>
557 // CHECK-NEXT: <key>description</key><string>Call to &apos;dispatch_once&apos; uses the local variable &apos;pred&apos; for the predicate value. Using such transient memory for the predicate is potentially dangerous. Perhaps you inten (…)
    [all...]
  /external/elfutils/libdwfl/
linux-kernel-modules.c 193 int (*predicate) (const char *module, const char *file))
203 result = ((predicate != NULL && !(*predicate) (KERNEL_MODNAME, NULL))
209 if (predicate != NULL)
211 /* Let the predicate decide whether to use this one. */
212 int want = (*predicate) (KERNEL_MODNAME, fname);
248 int (*predicate) (const char *module, const char *file))
268 true, predicate);
322 int (*predicate) (const char *module,
325 int result = report_kernel_archive (dwfl, &release, predicate);
    [all...]
  /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));
  /frameworks/base/core/java/com/android/internal/widget/
WatchHeaderListView.java 29 import java.util.function.Predicate;
95 Predicate<View> predicate, View childToSkip) {
96 View v = super.findViewByPredicateTraversal(predicate, childToSkip);
99 return (T) mTopPanel.findViewByPredicate(predicate);
  /bionic/tests/
math_data_test.h 170 FpUlpEq<ULP, RT> predicate; local
172 EXPECT_PRED_FORMAT2(predicate,
216 FpUlpEq<ULP, RT> predicate; local
218 EXPECT_PRED_FORMAT2(predicate,
295 FpUlpEq<ULP, RT> predicate; local
297 EXPECT_PRED_FORMAT2(predicate,

Completed in 1518 milliseconds

1 2 3 45 6 7 8 91011>>