Searched refs:predicate (Results 51 - 75 of 122) sorted by relevance

12345

/openjdk9/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/
H A DExcludePlugin.java41 private Predicate<String> predicate; field in class:ExcludePlugin
52 resource = predicate.test(resource.path()) ? resource : null;
81 predicate = ResourceFilter.excludeFilter(config.get(NAME));
/openjdk9/hotspot/test/compiler/codecache/cli/common/
H A DCodeCacheCLITestCase.java118 CommonDescriptions(Function<CodeCacheOptions, Boolean> predicate, argument
121 this.description = new Description(predicate,
132 private final Function<CodeCacheOptions, Boolean> predicate; field in class:CodeCacheCLITestCase.Description
134 public Description(Function<CodeCacheOptions, Boolean> predicate, argument
139 this.predicate = predicate;
143 return predicate.apply(options);
/openjdk9/jdk/src/java.base/share/classes/java/util/stream/
H A DDoubleStream.java76 * the given predicate.
81 * @param predicate a <a href="package-summary.html#NonInterference">non-interfering</a>,
83 * predicate to apply to each element to determine if it
87 DoubleStream filter(DoublePredicate predicate); argument
284 * prefix of elements taken from this stream that match the given predicate.
286 * subset of elements taken from this stream that match the given predicate.
289 * sequence of elements of this stream that match the given predicate. The
292 * not match the given predicate.
295 * stream match the given predicate, then the behavior of this operation is
300 * elements of this stream match the given predicate the
339 takeWhile(DoublePredicate predicate) argument
406 dropWhile(DoublePredicate predicate) argument
798 anyMatch(DoublePredicate predicate) argument
821 allMatch(DoublePredicate predicate) argument
844 noneMatch(DoublePredicate predicate) argument
[all...]
H A DLongStream.java77 * the given predicate.
82 * @param predicate a <a href="package-summary.html#NonInterference">non-interfering</a>,
84 * predicate to apply to each element to determine if it
88 LongStream filter(LongPredicate predicate); argument
282 * prefix of elements taken from this stream that match the given predicate.
284 * subset of elements taken from this stream that match the given predicate.
287 * sequence of elements of this stream that match the given predicate. The
290 * not match the given predicate.
293 * stream match the given predicate, then the behavior of this operation is
298 * elements of this stream match the given predicate the
337 takeWhile(LongPredicate predicate) argument
404 dropWhile(LongPredicate predicate) argument
717 anyMatch(LongPredicate predicate) argument
740 allMatch(LongPredicate predicate) argument
763 noneMatch(LongPredicate predicate) argument
[all...]
H A DIntStream.java77 * the given predicate.
82 * @param predicate a <a href="package-summary.html#NonInterference">non-interfering</a>,
84 * predicate to apply to each element to determine if it
88 IntStream filter(IntPredicate predicate); argument
282 * prefix of elements taken from this stream that match the given predicate.
284 * subset of elements taken from this stream that match the given predicate.
287 * sequence of elements of this stream that match the given predicate. The
290 * not match the given predicate.
293 * stream match the given predicate, then the behavior of this operation is
298 * elements of this stream match the given predicate the
336 takeWhile(IntPredicate predicate) argument
402 dropWhile(IntPredicate predicate) argument
715 anyMatch(IntPredicate predicate) argument
738 allMatch(IntPredicate predicate) argument
761 noneMatch(IntPredicate predicate) argument
[all...]
H A DStream.java171 * the given predicate.
176 * @param predicate a <a href="package-summary.html#NonInterference">non-interfering</a>,
178 * predicate to apply to each element to determine if it
182 Stream<T> filter(Predicate<? super T> predicate); argument
501 * prefix of elements taken from this stream that match the given predicate.
503 * subset of elements taken from this stream that match the given predicate.
506 * sequence of elements of this stream that match the given predicate. The
509 * not match the given predicate.
512 * stream match the given predicate, then the behavior of this operation is
517 * elements of this stream match the given predicate the
555 takeWhile(Predicate<? super T> predicate) argument
621 dropWhile(Predicate<? super T> predicate) argument
1047 anyMatch(Predicate<? super T> predicate) argument
1070 allMatch(Predicate<? super T> predicate) argument
1093 noneMatch(Predicate<? super T> predicate) argument
[all...]
H A DWhileOps.java59 * @param predicate the predicate that returns false to halt taking.
62 Predicate<? super T> predicate) {
63 Objects.requireNonNull(predicate);
74 helper.wrapSpliterator(spliterator), false, predicate);
98 if (take = predicate.test(t)) {
116 * @param predicate the predicate that returns false to halt taking.
119 IntPredicate predicate) {
120 Objects.requireNonNull(predicate);
61 makeTakeWhileRef(AbstractPipeline<?, T, ?> upstream, Predicate<? super T> predicate) argument
118 makeTakeWhileInt(AbstractPipeline<?, Integer, ?> upstream, IntPredicate predicate) argument
175 makeTakeWhileLong(AbstractPipeline<?, Long, ?> upstream, LongPredicate predicate) argument
232 makeTakeWhileDouble(AbstractPipeline<?, Double, ?> upstream, DoublePredicate predicate) argument
330 makeDropWhileRef(AbstractPipeline<?, T, ?> upstream, Predicate<? super T> predicate) argument
406 makeDropWhileInt(AbstractPipeline<?, Integer, ?> upstream, IntPredicate predicate) argument
481 makeDropWhileLong(AbstractPipeline<?, Long, ?> upstream, LongPredicate predicate) argument
556 makeDropWhileDouble(AbstractPipeline<?, Double, ?> upstream, DoublePredicate predicate) argument
[all...]
/openjdk9/hotspot/test/compiler/intrinsics/sha/cli/testcases/
H A DGenericTestCaseForUnsupportedX86CPU.java30 import jdk.test.lib.cli.predicate.AndPredicate;
31 import jdk.test.lib.cli.predicate.NotPredicate;
32 import jdk.test.lib.cli.predicate.OrPredicate;
H A DUseSHASpecificTestCaseForSupportedCPU.java27 import compiler.testlibrary.sha.predicate.IntrinsicPredicates;
32 import jdk.test.lib.cli.predicate.AndPredicate;
33 import jdk.test.lib.cli.predicate.OrPredicate;
/openjdk9/hotspot/test/compiler/rtm/print/
H A DTestPrintPreciseRTMLockingStatistics.java49 import compiler.testlibrary.rtm.predicate.SupportedCPU;
50 import compiler.testlibrary.rtm.predicate.SupportedOS;
51 import compiler.testlibrary.rtm.predicate.SupportedVM;
55 import jdk.test.lib.cli.predicate.AndPredicate;
/openjdk9/hotspot/test/compiler/rtm/cli/
H A DRTMLockingAwareTest.java26 import compiler.testlibrary.rtm.predicate.SupportedCPU;
27 import compiler.testlibrary.rtm.predicate.SupportedOS;
28 import compiler.testlibrary.rtm.predicate.SupportedVM;
31 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestPrintPreciseRTMLockingStatisticsBase.java37 BooleanSupplier predicate) {
38 super(predicate, "PrintPreciseRTMLockingStatistics", true, false,
36 TestPrintPreciseRTMLockingStatisticsBase( BooleanSupplier predicate) argument
/openjdk9/hotspot/test/compiler/rtm/locking/
H A DTestRTMLockingThreshold.java46 import compiler.testlibrary.rtm.predicate.SupportedCPU;
47 import compiler.testlibrary.rtm.predicate.SupportedOS;
48 import compiler.testlibrary.rtm.predicate.SupportedVM;
53 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestRTMTotalCountIncrRate.java46 import compiler.testlibrary.rtm.predicate.SupportedCPU;
47 import compiler.testlibrary.rtm.predicate.SupportedOS;
48 import compiler.testlibrary.rtm.predicate.SupportedVM;
53 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestRTMDeoptOnLowAbortRatio.java45 import compiler.testlibrary.rtm.predicate.SupportedCPU;
46 import compiler.testlibrary.rtm.predicate.SupportedOS;
47 import compiler.testlibrary.rtm.predicate.SupportedVM;
52 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestRTMSpinLoopCount.java46 import compiler.testlibrary.rtm.predicate.SupportedCPU;
47 import compiler.testlibrary.rtm.predicate.SupportedOS;
48 import compiler.testlibrary.rtm.predicate.SupportedVM;
52 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestRTMAbortRatio.java46 import compiler.testlibrary.rtm.predicate.SupportedCPU;
47 import compiler.testlibrary.rtm.predicate.SupportedOS;
48 import compiler.testlibrary.rtm.predicate.SupportedVM;
53 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestRTMAfterNonRTMDeopt.java48 import compiler.testlibrary.rtm.predicate.SupportedCPU;
49 import compiler.testlibrary.rtm.predicate.SupportedOS;
50 import compiler.testlibrary.rtm.predicate.SupportedVM;
55 import jdk.test.lib.cli.predicate.AndPredicate;
/openjdk9/hotspot/test/compiler/testlibrary/sha/predicate/
H A DIntrinsicPredicates.java24 package compiler.testlibrary.sha.predicate;
27 import jdk.test.lib.cli.predicate.AndPredicate;
28 import jdk.test.lib.cli.predicate.CPUSpecificPredicate;
29 import jdk.test.lib.cli.predicate.OrPredicate;
/openjdk9/test/lib/jdk/test/lib/cli/predicate/
H A DAndPredicate.java24 package jdk.test.lib.cli.predicate;
H A DCPUSpecificPredicate.java24 package jdk.test.lib.cli.predicate;
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/iterators/
H A DNodeIterable.java39 default FilteredNodeIterable<T> filter(NodePredicate predicate) { argument
40 return new FilteredNodeIterable<>(this).and(predicate);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/constopt/
H A DVariableMap.java77 * Keeps only keys which match the given predicate.
79 public void filter(Predicate<T> predicate) { argument
82 if (e != null && !predicate.test(e)) {
/openjdk9/jdk/test/java/util/stream/bootlib/java.base/java/util/stream/
H A DDefaultMethodStreams.java185 public Stream<T> filter(Predicate<? super T> predicate) { argument
186 return s.filter(predicate);
320 public boolean anyMatch(Predicate<? super T> predicate) { argument
321 return s.anyMatch(predicate);
325 public boolean allMatch(Predicate<? super T> predicate) { argument
326 return s.allMatch(predicate);
330 public boolean noneMatch(Predicate<? super T> predicate) { argument
331 return s.noneMatch(predicate);
396 public IntStream filter(IntPredicate predicate) { argument
397 return s.filter(predicate);
511 anyMatch(IntPredicate predicate) argument
516 allMatch(IntPredicate predicate) argument
521 noneMatch(IntPredicate predicate) argument
607 filter(LongPredicate predicate) argument
717 anyMatch(LongPredicate predicate) argument
722 allMatch(LongPredicate predicate) argument
727 noneMatch(LongPredicate predicate) argument
800 filter(DoublePredicate predicate) argument
915 anyMatch(DoublePredicate predicate) argument
920 allMatch(DoublePredicate predicate) argument
925 noneMatch(DoublePredicate predicate) argument
[all...]
/openjdk9/jdk/test/java/lang/reflect/Parameter/
H A DWithoutParameters.java119 private void errorIfTrue(boolean predicate, String errMessage) { argument
120 if (predicate) {
126 private void abortIfTrue(boolean predicate, String errMessage) { argument
127 if (predicate) {

Completed in 275 milliseconds

12345