Searched refs:predicate (Results 26 - 50 of 122) sorted by relevance

12345

/openjdk9/hotspot/test/compiler/rtm/cli/
H A DTestUseRTMForStackLocksOptionOnSupportedConfig.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedOS;
45 import compiler.testlibrary.rtm.predicate.SupportedVM;
48 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestUseRTMDeoptOptionOnSupportedConfig.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedOS;
45 import compiler.testlibrary.rtm.predicate.SupportedVM;
48 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestUseRTMLockingOptionOnSupportedConfig.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedOS;
45 import compiler.testlibrary.rtm.predicate.SupportedVM;
48 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestUseRTMLockingOptionOnUnsupportedCPU.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedVM;
48 import jdk.test.lib.cli.predicate.AndPredicate;
49 import jdk.test.lib.cli.predicate.NotPredicate;
H A DTestUseRTMLockingOptionWithBiasedLocking.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedOS;
45 import compiler.testlibrary.rtm.predicate.SupportedVM;
48 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestUseRTMLockingOptionOnUnsupportedVM.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedVM;
47 import jdk.test.lib.cli.predicate.AndPredicate;
48 import jdk.test.lib.cli.predicate.NotPredicate;
/openjdk9/test/lib/jdk/test/lib/cli/
H A DCPUSpecificCommandLineOptionTest.java26 import jdk.test.lib.cli.predicate.CPUSpecificPredicate;
/openjdk9/test/lib/jdk/test/lib/cli/predicate/
H A DNotPredicate.java24 package jdk.test.lib.cli.predicate;
H A DOrPredicate.java24 package jdk.test.lib.cli.predicate;
/openjdk9/test/fmw/gtest/include/gtest/
H A Dgtest-death-test.h166 // integer exit status that satisfies predicate, and emitting error output
168 # define ASSERT_EXIT(statement, predicate, regex) \
169 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_FATAL_FAILURE_)
173 # define EXPECT_EXIT(statement, predicate, regex) \
174 GTEST_DEATH_TEST_(statement, predicate, regex, GTEST_NONFATAL_FAILURE_)
187 // Two predicate classes that can be used in {ASSERT,EXPECT}_EXIT*:
/openjdk9/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/
H A DZipPlugin.java48 private Predicate<String> predicate; field in class:ZipPlugin
58 ZipPlugin(Predicate<String> predicate) { argument
59 this.predicate = predicate;
89 predicate = ResourceFilter.includeFilter(config.get(NAME));
121 && predicate.test(resource.path())) {
H A DExcludeFilesPlugin.java41 private Predicate<String> predicate; field in class:ExcludeFilesPlugin
52 file = predicate.test(file.path()) ? file : null;
81 predicate = ResourceFilter.excludeFilter(config.get(NAME));
/openjdk9/jdk/test/java/net/httpclient/websocket/jdk.incubator.httpclient/jdk/incubator/http/internal/websocket/
H A DMockListener.java54 Builder expectOnOpen(F1<? super WebSocket, Boolean> predicate) { argument
56 args -> predicate.apply((WebSocket) args[0]));
61 Builder expectOnPing(F2<? super WebSocket, ? super ByteBuffer, Boolean> predicate) { argument
63 args -> predicate.apply((WebSocket) args[0], (ByteBuffer) args[1]));
68 Builder expectOnClose(F3<? super WebSocket, ? super Integer, ? super String, Boolean> predicate) { argument
70 args -> predicate.apply((WebSocket) args[0], (Integer) args[1], (String) args[2])));
74 Builder expectOnError(F2<? super WebSocket, ? super Throwable, Boolean> predicate) { argument
76 args -> predicate.apply((WebSocket) args[0], (Throwable) args[1])));
/openjdk9/hotspot/test/compiler/rtm/method_options/
H A DTestUseRTMLockElidingOption.java47 import compiler.testlibrary.rtm.predicate.SupportedCPU;
48 import compiler.testlibrary.rtm.predicate.SupportedOS;
49 import compiler.testlibrary.rtm.predicate.SupportedVM;
53 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestNoRTMLockElidingOption.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;
/openjdk9/hotspot/test/compiler/rtm/locking/
H A DTestUseRTMXendForLockBusy.java47 import compiler.testlibrary.rtm.predicate.SupportedCPU;
48 import compiler.testlibrary.rtm.predicate.SupportedOS;
49 import compiler.testlibrary.rtm.predicate.SupportedVM;
53 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestUseRTMAfterLockInflation.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 DTestRTMRetryCount.java45 import compiler.testlibrary.rtm.predicate.SupportedCPU;
46 import compiler.testlibrary.rtm.predicate.SupportedOS;
47 import compiler.testlibrary.rtm.predicate.SupportedVM;
51 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestRTMDeoptOnHighAbortRatio.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 DTestRTMAbortThreshold.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;
/openjdk9/hotspot/test/compiler/testlibrary/rtm/predicate/
H A DSupportedOS.java25 package compiler.testlibrary.rtm.predicate;
/openjdk9/hotspot/test/compiler/intrinsics/sha/cli/testcases/
H A DUseSHASpecificTestCaseForUnsupportedCPU.java27 import compiler.testlibrary.sha.predicate.IntrinsicPredicates;
32 import jdk.test.lib.cli.predicate.AndPredicate;
33 import jdk.test.lib.cli.predicate.NotPredicate;
34 import jdk.test.lib.cli.predicate.OrPredicate;
/openjdk9/langtools/test/tools/javac/lambda/
H A DTargetType11.java17 public Predicate<Character> forPredicate(Predicate<? super Character> predicate) { return null; } argument
/openjdk9/jdk/src/java.base/share/classes/java/util/stream/
H A DMatchOps.java37 * quantified predicate matching on the elements of a stream. Supported variants
51 /** Do all elements match the predicate? */
54 /** Do any elements match the predicate? */
57 /** Do no elements match the predicate? */
71 * Constructs a quantified predicate matcher for a Stream.
74 * @param predicate the {@code Predicate} to apply to stream elements
79 public static <T> TerminalOp<T, Boolean> makeRef(Predicate<? super T> predicate, argument
81 Objects.requireNonNull(predicate);
90 if (!stop && predicate.test(t) == matchKind.stopOnPredicateMatches) {
101 * Constructs a quantified predicate matche
108 makeInt(IntPredicate predicate, MatchKind matchKind) argument
137 makeLong(LongPredicate predicate, MatchKind matchKind) argument
167 makeDouble(DoublePredicate predicate, MatchKind matchKind) argument
[all...]
/openjdk9/hotspot/test/compiler/cpuflags/
H A DAESIntrinsicsBase.java27 import compiler.cpuflags.predicate.AESSupportPredicate;
53 protected AESIntrinsicsBase(BooleanSupplier predicate) { argument
54 super(predicate);

Completed in 195 milliseconds

12345